From f7a4d1bdebd0b5c18c731f7b2f50eaee51e70fdf Mon Sep 17 00:00:00 2001 From: Lohikar Date: Tue, 20 Feb 2018 16:52:25 -0600 Subject: [PATCH 01/18] Fix space wind --- code/ZAS/Airflow.dm | 31 +++++++++++++++++++++++-------- code/ZAS/ConnectionGroup.dm | 10 +++++----- code/__defines/ZAS.dm | 1 + 3 files changed, 29 insertions(+), 13 deletions(-) diff --git a/code/ZAS/Airflow.dm b/code/ZAS/Airflow.dm index 327e8b03ee5..c02ffb10d4f 100644 --- a/code/ZAS/Airflow.dm +++ b/code/ZAS/Airflow.dm @@ -141,13 +141,28 @@ mob/living/carbon/human/airflow_hit(atom/A) Stun(round(airflow_speed * vsc.airflow_stun/2)) . = ..() -zone/proc/movables() +zone/proc/movables(list/origins) . = list() - for(var/turf/T in contents) - CHECK_TICK + if (!origins || !origins.len) + return - for(var/aa in T) - var/atom/movable/A = aa - if(!A.simulated || A.anchored || istype(A, /obj/effect) || istype(A, /mob/abstract/eye)) - continue - . += A + var/list/A // this should be the longer list + var/list/B + if (contents.len > origins) + A = contents + B = origins + else + A = origins + B = contents + + for (var/t in A) + var/turf/T = t + for (var/tt in B) + var/turf/TT = tt + if (T.contents.len > !!T.lighting_overlay && get_dist(T, TT) <= EDGE_KNOCKDOWN_MAX_DISTANCE) + for (var/am in T) + var/atom/movable/AM = am + if (AM.simulated && !AM.anchored && !istype(AM, /obj/effect) && !istype(AM, /mob/abstract)) + .[AM] = TRUE + + CHECK_TICK diff --git a/code/ZAS/ConnectionGroup.dm b/code/ZAS/ConnectionGroup.dm index 27efb6ced96..78a1d43b8f4 100644 --- a/code/ZAS/ConnectionGroup.dm +++ b/code/ZAS/ConnectionGroup.dm @@ -169,11 +169,11 @@ Class Procs: var/list/attracted var/list/repelled if(differential > 0) - attracted = A.movables() - repelled = B.movables() + attracted = A.movables(connecting_turfs) + repelled = B.movables(connecting_turfs) else - attracted = B.movables() - repelled = A.movables() + attracted = B.movables(connecting_turfs) + repelled = A.movables(connecting_turfs) // These are async, with waitfor = FALSE flow(attracted, abs(differential), 0) @@ -239,7 +239,7 @@ Class Procs: var/differential = A.air.return_pressure() - air.return_pressure() if(abs(differential) >= vsc.airflow_lightest_pressure) - var/list/attracted = A.movables() + var/list/attracted = A.movables(connecting_turfs) // This call is async, with waitfor = FALSE flow(attracted, abs(differential), differential < 0) diff --git a/code/__defines/ZAS.dm b/code/__defines/ZAS.dm index e19de00e7a4..9c58cb7d314 100644 --- a/code/__defines/ZAS.dm +++ b/code/__defines/ZAS.dm @@ -7,6 +7,7 @@ #define BLOCKED 3 #define ZONE_MIN_SIZE 14 //zones with less than this many turfs will always merge, even if the connection is not direct +#define EDGE_KNOCKDOWN_MAX_DISTANCE 16 // Maximum distance between an airflow origin and a movable before knockdown no longer applies. #define CANPASS_ALWAYS 1 #define CANPASS_DENSITY 2 From f29ca756811bbc2f64df5d534157f89215d308d3 Mon Sep 17 00:00:00 2001 From: Lohikar Date: Tue, 20 Feb 2018 16:53:29 -0600 Subject: [PATCH 02/18] changelog --- html/changelogs/lohikar-spacewind.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/lohikar-spacewind.yml diff --git a/html/changelogs/lohikar-spacewind.yml b/html/changelogs/lohikar-spacewind.yml new file mode 100644 index 00000000000..eee1da79483 --- /dev/null +++ b/html/changelogs/lohikar-spacewind.yml @@ -0,0 +1,5 @@ +author: Lohikar + +delete-after: True +changes: + - bugfix: "ZAS Knockdown now has a distance cap. (Fixes 'space wind')" From 1a4b88edc3f95f370527f726203bb06b0653f389 Mon Sep 17 00:00:00 2001 From: Lohikar Date: Wed, 21 Feb 2018 09:52:51 -0600 Subject: [PATCH 03/18] Make this a bit less insanely expensive --- code/ZAS/Airflow.dm | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/code/ZAS/Airflow.dm b/code/ZAS/Airflow.dm index c02ffb10d4f..e7af40835e5 100644 --- a/code/ZAS/Airflow.dm +++ b/code/ZAS/Airflow.dm @@ -146,23 +146,18 @@ zone/proc/movables(list/origins) if (!origins || !origins.len) return - var/list/A // this should be the longer list - var/list/B - if (contents.len > origins) - A = contents - B = origins - else - A = origins - B = contents - - for (var/t in A) - var/turf/T = t - for (var/tt in B) - var/turf/TT = tt - if (T.contents.len > !!T.lighting_overlay && get_dist(T, TT) <= EDGE_KNOCKDOWN_MAX_DISTANCE) - for (var/am in T) - var/atom/movable/AM = am - if (AM.simulated && !AM.anchored && !istype(AM, /obj/effect) && !istype(AM, /mob/abstract)) + var/turf/T + var/turf/TT + var/atom/movable/AM + for (var/t in contents) + T = t + for (var/am in T) + AM = am + if (AM.simulated && !AM.anchored && !istype(AM, /obj/effect) && !istype(AM, /mob/abstract)) + for (var/tt in origins) + TT = tt + if (get_dist(T, TT) <= EDGE_KNOCKDOWN_MAX_DISTANCE) .[AM] = TRUE + break - CHECK_TICK + CHECK_TICK From 7d08f139287f83e60cd3c9ca11978885fc801780 Mon Sep 17 00:00:00 2001 From: Lohikar Date: Sat, 24 Feb 2018 00:30:53 -0600 Subject: [PATCH 04/18] Remove pointless typecasting, minor performance tweaks --- code/ZAS/Airflow.dm | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/code/ZAS/Airflow.dm b/code/ZAS/Airflow.dm index e7af40835e5..089b59d6632 100644 --- a/code/ZAS/Airflow.dm +++ b/code/ZAS/Airflow.dm @@ -146,17 +146,15 @@ zone/proc/movables(list/origins) if (!origins || !origins.len) return - var/turf/T - var/turf/TT + var/static/list/movables_tcache = typecacheof(list(/obj/effect, /mob/abstract)) + var/atom/movable/AM - for (var/t in contents) - T = t - for (var/am in T) + for (var/testing_turf in contents) + for (var/am in testing_turf) AM = am - if (AM.simulated && !AM.anchored && !istype(AM, /obj/effect) && !istype(AM, /mob/abstract)) - for (var/tt in origins) - TT = tt - if (get_dist(T, TT) <= EDGE_KNOCKDOWN_MAX_DISTANCE) + if (AM.simulated && !AM.anchored && !movables_tcache[AM.type]) + for (var/source_turf in origins) + if (get_dist(testing_turf, source_turf) <= EDGE_KNOCKDOWN_MAX_DISTANCE) .[AM] = TRUE break From 1702bae33479ab0b08b1c61d7a92e38501179264 Mon Sep 17 00:00:00 2001 From: skull132 Date: Sat, 10 Mar 2018 20:37:25 +0200 Subject: [PATCH 05/18] Changelogs v2, 10MAR2018 --- html/changelog.html | 4 ++++ html/changelogs/.all_changelog.yml | 2 ++ html/changelogs/lohikar-spacewind.yml | 5 ----- 3 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 html/changelogs/lohikar-spacewind.yml diff --git a/html/changelog.html b/html/changelog.html index 78736c8cf65..830f056b64a 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -116,6 +116,10 @@
  • Druid and Cleric wizards can now take their victims for granite.
  • Added a number of new cocktails made with unathi booze. Many have custom sprites, and one of them is slightly dangerous to non-unathi.
  • +

    Lohikar updated:

    +
      +
    • ZAS Knockdown now has a distance cap. (Fixes 'space wind')
    • +

    LordFowl updated:

    • Batons will now deal both brute and shock damage.
    • diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 0e598f35239..a251ed09ea7 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -5218,6 +5218,8 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - rscadd: Druid and Cleric wizards can now take their victims for granite. - rscadd: Added a number of new cocktails made with unathi booze. Many have custom sprites, and one of them is slightly dangerous to non-unathi. + Lohikar: + - bugfix: ZAS Knockdown now has a distance cap. (Fixes 'space wind') LordFowl: - tweak: Batons will now deal both brute and shock damage. - tweak: Electricity system modified to be more realistic in its arcing and damage, diff --git a/html/changelogs/lohikar-spacewind.yml b/html/changelogs/lohikar-spacewind.yml deleted file mode 100644 index eee1da79483..00000000000 --- a/html/changelogs/lohikar-spacewind.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: Lohikar - -delete-after: True -changes: - - bugfix: "ZAS Knockdown now has a distance cap. (Fixes 'space wind')" From 443f2508467c1191bcef15b0cf12f5a71a4704e3 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sat, 10 Mar 2018 17:42:15 -0300 Subject: [PATCH 06/18] March update bugfixes (#4373) -fixes lack of light in the forensic lower area of the brig -fixes the window tinting button missing from the bar -fixes #4371 -fixes #4370 -fixes the escape shuttle transit -fixes the wizard coat missing in the map -changes the color of when someone takes a tick to red, instead of blue -removes the extra escape shuttles that were left somewhere on the map for some reason --- code/modules/admin/ticket.dm | 2 +- maps/aurora/aurora-1_centcomm.dmm | 46202 ++++++++++++--------------- maps/aurora/aurora-4_mainlevel.dmm | 86 +- maps/aurora/aurora-6_surface.dmm | 26 +- 4 files changed, 20115 insertions(+), 26201 deletions(-) diff --git a/code/modules/admin/ticket.dm b/code/modules/admin/ticket.dm index ba967c5e79a..03a68c8b458 100644 --- a/code/modules/admin/ticket.dm +++ b/code/modules/admin/ticket.dm @@ -60,7 +60,7 @@ var/global/list/ticket_panels = list() discord_bot.send_to_admins("[key_name(owner_client)]'s request for help has been taken by [key_name(assigned_admin)].") owner_client.adminhelped = ADMINHELPED - message_admins("[key_name(assigned_admin)] has assigned themself to [src.owner]'s ticket.") + message_admins("[key_name(assigned_admin)] has assigned themself to [src.owner]'s ticket.") to_chat(client_by_ckey(src.owner), "[assigned_admin] has added themself to your ticket and should respond shortly. Thanks for your patience!") update_ticket_panels() diff --git a/maps/aurora/aurora-1_centcomm.dmm b/maps/aurora/aurora-1_centcomm.dmm index d6a62911d06..e0516c19f3d 100644 --- a/maps/aurora/aurora-1_centcomm.dmm +++ b/maps/aurora/aurora-1_centcomm.dmm @@ -1,4 +1,5 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +//Model dictionary trimmed on: 10-03-2018 20:24 (UTC) "aaa" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -1293,9 +1294,6 @@ /turf/space/transit/north/shuttlespace_ns13, /area/template_noop) "adi" = ( -/turf/template_noop, -/area/shuttle/escape/transit) -"adj" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -1308,13 +1306,13 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adk" = ( +"adj" = ( /obj/effect/floor_decal/corner/red{ dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adl" = ( +"adk" = ( /obj/structure/punching_bag, /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; @@ -1322,7 +1320,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adm" = ( +"adl" = ( /obj/effect/floor_decal/chapel{ icon_state = "chapel"; dir = 8 @@ -1330,7 +1328,7 @@ /obj/effect/floor_decal/chapel, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_chapel) -"adn" = ( +"adm" = ( /obj/structure/holostool, /obj/effect/floor_decal/chapel{ icon_state = "chapel"; @@ -1342,7 +1340,7 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_chapel) -"ado" = ( +"adn" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 8 @@ -1353,7 +1351,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_chapel) -"adp" = ( +"ado" = ( /obj/structure/holostool, /obj/effect/floor_decal/chapel{ icon_state = "chapel"; @@ -1365,15 +1363,15 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_chapel) +"adp" = ( +/obj/effect/floor_decal/chapel, +/obj/effect/floor_decal/chapel{ + icon_state = "chapel"; + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_chapel) "adq" = ( -/obj/effect/floor_decal/chapel, -/obj/effect/floor_decal/chapel{ - icon_state = "chapel"; - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled/dark, -/area/holodeck/source_chapel) -"adr" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -1381,19 +1379,19 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) +"adr" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) "ads" = ( /obj/structure/holostool, -/turf/simulated/floor/holofloor/carpet, -/area/holodeck/source_theatre) -"adt" = ( -/obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"adu" = ( +"adt" = ( /obj/structure/table/wood, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -1401,14 +1399,14 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adv" = ( +"adu" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adw" = ( +"adv" = ( /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adx" = ( +"adw" = ( /obj/structure/table/wood, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -1416,21 +1414,21 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"ady" = ( +"adx" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"adz" = ( +"ady" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"adA" = ( +"adz" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1441,7 +1439,7 @@ }, /turf/space/transit/north/shuttlespace_ns1, /area/template_noop) -"adB" = ( +"adA" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1452,17 +1450,17 @@ }, /turf/space/transit/north/shuttlespace_ns11, /area/template_noop) -"adC" = ( +"adB" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adD" = ( +"adC" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adE" = ( +"adD" = ( /obj/structure/punching_bag, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; @@ -1470,7 +1468,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adF" = ( +"adE" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, @@ -1480,13 +1478,13 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adG" = ( +"adF" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adH" = ( +"adG" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, @@ -1496,7 +1494,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adI" = ( +"adH" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1506,7 +1504,7 @@ }, /turf/space/transit/north/shuttlespace_ns7, /area/template_noop) -"adJ" = ( +"adI" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -1516,14 +1514,14 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adK" = ( +"adJ" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adL" = ( +"adK" = ( /obj/structure/punching_bag, /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; @@ -1531,7 +1529,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_gym) -"adM" = ( +"adL" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood/corner{ icon_state = "spline_fancy_corner"; @@ -1543,7 +1541,7 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"adN" = ( +"adM" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -1555,7 +1553,7 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"adO" = ( +"adN" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -1563,7 +1561,7 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"adP" = ( +"adO" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -1575,7 +1573,7 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"adQ" = ( +"adP" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood/corner{ icon_state = "spline_fancy_corner"; @@ -1587,21 +1585,21 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"adR" = ( +"adQ" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 8 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adS" = ( +"adR" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 4 }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"adT" = ( +"adS" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1611,7 +1609,7 @@ }, /turf/space/transit/east/shuttlespace_ew2, /area/template_noop) -"adU" = ( +"adT" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1621,7 +1619,7 @@ }, /turf/space/transit/east/shuttlespace_ew3, /area/template_noop) -"adV" = ( +"adU" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1631,7 +1629,7 @@ }, /turf/space/transit/east/shuttlespace_ew4, /area/template_noop) -"adW" = ( +"adV" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1641,7 +1639,7 @@ }, /turf/space/transit/east/shuttlespace_ew5, /area/template_noop) -"adX" = ( +"adW" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1651,7 +1649,7 @@ }, /turf/space/transit/east/shuttlespace_ew6, /area/template_noop) -"adY" = ( +"adX" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1661,7 +1659,7 @@ }, /turf/space/transit/east/shuttlespace_ew7, /area/template_noop) -"adZ" = ( +"adY" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1671,7 +1669,7 @@ }, /turf/space/transit/east/shuttlespace_ew9, /area/template_noop) -"aea" = ( +"adZ" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1681,7 +1679,7 @@ }, /turf/space/transit/east/shuttlespace_ew8, /area/template_noop) -"aeb" = ( +"aea" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1691,7 +1689,7 @@ }, /turf/space/transit/east/shuttlespace_ew10, /area/template_noop) -"aec" = ( +"aeb" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1701,7 +1699,7 @@ }, /turf/space/transit/east/shuttlespace_ew14, /area/template_noop) -"aed" = ( +"aec" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1711,11 +1709,11 @@ }, /turf/space/transit/east/shuttlespace_ew15, /area/template_noop) -"aee" = ( +"aed" = ( /obj/effect/floor_decal/corner/white/full, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_gym) -"aef" = ( +"aee" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -1723,14 +1721,14 @@ /obj/effect/floor_decal/industrial/hatch, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_gym) -"aeg" = ( +"aef" = ( /obj/effect/floor_decal/corner/white/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_gym) -"aeh" = ( +"aeg" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ @@ -1743,12 +1741,12 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"aei" = ( +"aeh" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"aej" = ( +"aei" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -1761,7 +1759,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_theatre) -"aek" = ( +"aej" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -1780,7 +1778,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"ael" = ( +"aek" = ( /obj/structure/bed/chair/holochair{ dir = 8 }, @@ -1795,7 +1793,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"aem" = ( +"ael" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1805,7 +1803,7 @@ }, /turf/space/transit/north/shuttlespace_ns14, /area/template_noop) -"aen" = ( +"aem" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1815,50 +1813,50 @@ }, /turf/space/transit/east/shuttlespace_ew11, /area/template_noop) -"aeo" = ( +"aen" = ( /turf/space/transit/east/shuttlespace_ew7, /area/shuttle/arrival/transit) -"aep" = ( +"aeo" = ( /turf/space/transit/east/shuttlespace_ew8, /area/shuttle/arrival/transit) -"aeq" = ( +"aep" = ( /turf/space/transit/east/shuttlespace_ew9, /area/shuttle/arrival/transit) -"aer" = ( +"aeq" = ( /turf/space/transit/east/shuttlespace_ew10, /area/shuttle/arrival/transit) -"aes" = ( +"aer" = ( /turf/space/transit/east/shuttlespace_ew11, /area/shuttle/arrival/transit) -"aet" = ( +"aes" = ( /turf/space/transit/east/shuttlespace_ew12, /area/shuttle/arrival/transit) -"aeu" = ( +"aet" = ( /turf/space/transit/east/shuttlespace_ew13, /area/shuttle/arrival/transit) -"aev" = ( +"aeu" = ( /turf/space/transit/east/shuttlespace_ew14, /area/shuttle/arrival/transit) -"aew" = ( +"aev" = ( /turf/space/transit/east/shuttlespace_ew15, /area/shuttle/arrival/transit) -"aex" = ( +"aew" = ( /turf/space/transit/east/shuttlespace_ew1, /area/shuttle/arrival/transit) -"aey" = ( +"aex" = ( /turf/space/transit/east/shuttlespace_ew2, /area/shuttle/arrival/transit) -"aez" = ( +"aey" = ( /turf/space/transit/east/shuttlespace_ew3, /area/shuttle/arrival/transit) -"aeA" = ( +"aez" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_gym) -"aeB" = ( +"aeA" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 8 @@ -1877,7 +1875,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_chapel) -"aeC" = ( +"aeB" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -1885,7 +1883,7 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"aeD" = ( +"aeC" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -1893,7 +1891,7 @@ }, /turf/simulated/floor/holofloor/grass, /area/holodeck/source_picnicarea) -"aeE" = ( +"aeD" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, @@ -1908,23 +1906,23 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"aeF" = ( +"aeE" = ( /obj/structure/bed/chair/holochair{ dir = 1 }, /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"aeG" = ( +"aeF" = ( /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"aeH" = ( +"aeG" = ( /obj/effect/floor_decal/carpet, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"aeI" = ( +"aeH" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -1936,7 +1934,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"aeJ" = ( +"aeI" = ( /obj/structure/table/wood, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -1944,25 +1942,25 @@ }, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_courtroom) -"aeK" = ( +"aeJ" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"aeL" = ( +"aeK" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"aeM" = ( +"aeL" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) -"aeN" = ( +"aeM" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -1972,24 +1970,24 @@ }, /turf/space/transit/east/shuttlespace_ew1, /area/template_noop) -"aeO" = ( +"aeN" = ( /turf/space/transit/east/shuttlespace_ew6, /area/shuttle/arrival/transit) -"aeP" = ( +"aeO" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, /turf/unsimulated/wall/riveted, /area/template_noop) +"aeP" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall/riveted, +/area/template_noop) "aeQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall/riveted, -/area/template_noop) -"aeR" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2000,7 +1998,7 @@ }, /turf/space/transit/north/shuttlespace_ns10, /area/template_noop) -"aeS" = ( +"aeR" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2010,36 +2008,36 @@ }, /turf/space/transit/north/shuttlespace_ns12, /area/template_noop) -"aeT" = ( +"aeS" = ( /turf/space/transit/east/shuttlespace_ew4, /area/shuttle/arrival/transit) -"aeU" = ( +"aeT" = ( /turf/space/transit/east/shuttlespace_ew5, /area/shuttle/arrival/transit) -"aeV" = ( +"aeU" = ( /turf/simulated/floor/holofloor/space, /area/holodeck/source_space) -"aeW" = ( +"aeV" = ( /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"aeX" = ( +"aeW" = ( /turf/simulated/floor/holofloor/wood, /area/holodeck/source_meetinghall) -"aeY" = ( +"aeX" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"aeZ" = ( +"aeY" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afa" = ( +"aeZ" = ( /obj/structure/holohoop, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; @@ -2047,34 +2045,34 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afb" = ( +"afa" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afc" = ( +"afb" = ( /turf/simulated/floor/beach/sand{ icon_state = "desert1" }, /area/holodeck/source_beach) -"afd" = ( +"afc" = ( /turf/simulated/floor/beach/sand{ icon_state = "desert4" }, /area/holodeck/source_beach) -"afe" = ( +"afd" = ( /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/holodeck/source_beach) -"aff" = ( +"afe" = ( /turf/simulated/floor/beach/sand{ icon_state = "desert0" }, /area/holodeck/source_beach) -"afg" = ( +"aff" = ( /obj/structure/table/holotable, /obj/machinery/readybutton{ pixel_y = 0 @@ -2085,7 +2083,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afh" = ( +"afg" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/red, @@ -2097,14 +2095,14 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afi" = ( +"afh" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afj" = ( +"afi" = ( /obj/structure/table/holotable, /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; @@ -2112,19 +2110,19 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afk" = ( +"afj" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afl" = ( +"afk" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afm" = ( +"afl" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afn" = ( +"afm" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2135,7 +2133,7 @@ }, /turf/space/transit/north/shuttlespace_ns2, /area/template_noop) -"afo" = ( +"afn" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2146,7 +2144,7 @@ }, /turf/space/transit/north/shuttlespace_ns9, /area/template_noop) -"afp" = ( +"afo" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2156,7 +2154,7 @@ }, /turf/space/transit/north/shuttlespace_ns11, /area/template_noop) -"afq" = ( +"afp" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2166,7 +2164,7 @@ }, /turf/space/transit/north/shuttlespace_ns3, /area/template_noop) -"afr" = ( +"afq" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2176,17 +2174,17 @@ }, /turf/space/transit/east/shuttlespace_ew13, /area/template_noop) -"afs" = ( +"afr" = ( /obj/effect/landmark{ name = "Holocarp Spawn Random" }, /turf/simulated/floor/holofloor/space, /area/holodeck/source_space) -"aft" = ( +"afs" = ( /obj/structure/flora/grass/both, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"afu" = ( +"aft" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 1 @@ -2202,7 +2200,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afv" = ( +"afu" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 1 @@ -2210,7 +2208,7 @@ /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afw" = ( +"afv" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 1 @@ -2226,52 +2224,52 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afx" = ( +"afw" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afy" = ( +"afx" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afz" = ( +"afy" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"afA" = ( +"afz" = ( /turf/simulated/floor/beach/sand{ icon_state = "desert3" }, /area/holodeck/source_beach) -"afB" = ( +"afA" = ( /obj/effect/overlay/palmtree_r, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/holodeck/source_beach) -"afC" = ( +"afB" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afD" = ( +"afC" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afE" = ( +"afD" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"afF" = ( +"afE" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2281,27 +2279,27 @@ }, /turf/space/transit/north/shuttlespace_ns2, /area/template_noop) -"afG" = ( +"afF" = ( /turf/simulated/floor/holofloor/tiled/ramp/bottom, /area/holodeck/source_meetinghall) -"afH" = ( +"afG" = ( /obj/structure/table/wood, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_meetinghall) -"afI" = ( +"afH" = ( /obj/item/clothing/glasses/sunglasses, /turf/simulated/floor/beach/sand{ icon_state = "desert0" }, /area/holodeck/source_beach) -"afJ" = ( +"afI" = ( /obj/effect/overlay/palmtree_l, /obj/effect/overlay/coconut, /turf/simulated/floor/beach/sand{ icon_state = "desert0" }, /area/holodeck/source_beach) -"afK" = ( +"afJ" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; dir = 2; @@ -2310,11 +2308,11 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afL" = ( +"afK" = ( /obj/structure/window/reinforced/holowindow, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afM" = ( +"afL" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2325,50 +2323,50 @@ }, /turf/space/transit/north/shuttlespace_ns15, /area/template_noop) -"afP" = ( +"afM" = ( /turf/simulated/floor/holofloor/lino, /area/holodeck/source_meetinghall) -"afQ" = ( +"afN" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 1 }, /turf/simulated/floor/holofloor/lino, /area/holodeck/source_meetinghall) -"afR" = ( +"afO" = ( /obj/item/weapon/beach_ball, /turf/simulated/floor/beach/sand{ icon_state = "desert0" }, /area/holodeck/source_beach) -"afS" = ( +"afP" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afT" = ( +"afQ" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afU" = ( +"afR" = ( /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"afV" = ( +"afS" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"afW" = ( +"afT" = ( /obj/structure/flora/grass/green, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"afX" = ( +"afU" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -2384,7 +2382,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afY" = ( +"afV" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -2392,7 +2390,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"afZ" = ( +"afW" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -2408,18 +2406,18 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"aga" = ( +"afX" = ( /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agb" = ( +"afY" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agc" = ( +"afZ" = ( /obj/item/weapon/beach_ball/holoball, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; @@ -2427,25 +2425,25 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agd" = ( +"aga" = ( /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"age" = ( +"agb" = ( /obj/item/weapon/inflatable_duck, /turf/simulated/floor/beach/sand{ icon_state = "desert" }, /area/holodeck/source_beach) -"agf" = ( +"agc" = ( /obj/structure/window/reinforced/holowindow/disappearing, /obj/effect/floor_decal/corner/red/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agg" = ( +"agd" = ( /obj/structure/window/reinforced/holowindow/disappearing, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; @@ -2453,7 +2451,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agh" = ( +"age" = ( /obj/structure/window/reinforced/holowindow/disappearing, /obj/effect/floor_decal/corner/red/full{ icon_state = "corner_white_full"; @@ -2461,35 +2459,35 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agi" = ( +"agf" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"agj" = ( +"agg" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"agk" = ( +"agh" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"agl" = ( +"agi" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"agm" = ( +"agj" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -2497,11 +2495,11 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"agn" = ( +"agk" = ( /obj/structure/holostool, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"ago" = ( +"agl" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -2509,45 +2507,45 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"agp" = ( +"agm" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agq" = ( +"agn" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agr" = ( +"ago" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"ags" = ( +"agp" = ( /turf/simulated/floor/beach/sand{ icon_state = "beachcorner"; dir = 2 }, /area/holodeck/source_beach) -"agt" = ( +"agq" = ( /turf/simulated/floor/beach/sand{ icon_state = "beach" }, /area/holodeck/source_beach) -"agu" = ( +"agr" = ( /turf/simulated/floor/beach/sand{ icon_state = "beachcorner"; dir = 1 }, /area/holodeck/source_beach) -"agv" = ( +"ags" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -2557,7 +2555,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agw" = ( +"agt" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -2567,7 +2565,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agx" = ( +"agu" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -2577,102 +2575,102 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agy" = ( +"agv" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"agz" = ( +"agw" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_boxingcourt) -"agA" = ( +"agx" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agB" = ( +"agy" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agC" = ( +"agz" = ( /turf/simulated/floor/beach/sand{ icon_state = "beach"; dir = 6 }, /area/holodeck/source_beach) -"agD" = ( +"agA" = ( /turf/simulated/floor/beach/sand{ icon_state = "seashallow"; dir = 2 }, /area/holodeck/source_beach) -"agE" = ( +"agB" = ( /turf/simulated/floor/beach/sand{ icon_state = "beach"; dir = 10 }, /area/holodeck/source_beach) -"agF" = ( +"agC" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agG" = ( +"agD" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) +"agE" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"agF" = ( +/obj/effect/floor_decal/corner/green/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"agG" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) "agH" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agI" = ( -/obj/effect/floor_decal/corner/green/full{ - icon_state = "corner_white_full"; - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/holodeck/source_boxingcourt) -"agJ" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"agK" = ( -/obj/effect/floor_decal/corner/green{ - icon_state = "corner_white"; - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agL" = ( +"agI" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"agM" = ( +"agJ" = ( /obj/machinery/door/window/holowindoor{ dir = 1; name = "Green Corner" }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"agN" = ( +"agK" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ @@ -2685,12 +2683,12 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"agO" = ( +"agL" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"agP" = ( +"agM" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -2703,7 +2701,7 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_meetinghall) -"agQ" = ( +"agN" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2713,11 +2711,11 @@ }, /turf/space/transit/north/shuttlespace_ns10, /area/template_noop) -"agR" = ( +"agO" = ( /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agS" = ( +"agP" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -2727,19 +2725,19 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agT" = ( +"agQ" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_basketball) -"agU" = ( +"agR" = ( /obj/effect/floor_decal/corner/green/full, /obj/structure/table/holotable, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agV" = ( +"agS" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -2751,14 +2749,14 @@ /obj/item/weapon/holo/esword/green, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agW" = ( +"agT" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agX" = ( +"agU" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 @@ -2769,7 +2767,7 @@ }, /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_thunderdomecourt) -"agY" = ( +"agV" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove{ icon_state = "boxinggreen"; @@ -2777,12 +2775,36 @@ }, /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) -"agZ" = ( +"agW" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/unsimulated/wall/riveted, /area/template_noop) +"agX" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdownside"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north/shuttlespace_ns7, +/area/template_noop) +"agY" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdownside"; + nostop = 1; + tiles = 0 + }, +/turf/space/transit/north/shuttlespace_ns8, +/area/template_noop) +"agZ" = ( +/turf/unsimulated/wall/riveted, +/area/prison/solitary) "aha" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -2792,33 +2814,9 @@ stopper = 0; tiles = 0 }, -/turf/space/transit/north/shuttlespace_ns7, +/turf/space/transit/north/shuttlespace_ns5, /area/template_noop) "ahb" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - tiles = 0 - }, -/turf/space/transit/north/shuttlespace_ns8, -/area/template_noop) -"ahc" = ( -/turf/unsimulated/wall/riveted, -/area/prison/solitary) -"ahd" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdownside"; - nostop = 1; - stopper = 0; - tiles = 0 - }, -/turf/space/transit/north/shuttlespace_ns5, -/area/template_noop) -"ahe" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2828,36 +2826,36 @@ }, /turf/space/transit/north/shuttlespace_ns6, /area/template_noop) -"ahf" = ( +"ahc" = ( /obj/structure/bed, /turf/unsimulated/floor{ name = "plating" }, /area/prison/solitary) -"ahg" = ( +"ahd" = ( /turf/unsimulated/floor{ name = "plating" }, /area/prison/solitary) -"ahh" = ( +"ahe" = ( /obj/effect/decal/cleanable/cobweb2, /turf/unsimulated/floor{ name = "plating" }, /area/prison/solitary) -"ahi" = ( +"ahf" = ( /obj/structure/bed, /turf/unsimulated/floor{ icon_state = "floorscorched2" }, /area/prison/solitary) -"ahj" = ( +"ahg" = ( /obj/effect/decal/cleanable/blood, /turf/unsimulated/floor{ name = "plating" }, /area/prison/solitary) -"ahk" = ( +"ahh" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2868,7 +2866,7 @@ }, /turf/space/transit/north/shuttlespace_ns4, /area/template_noop) -"ahl" = ( +"ahi" = ( /obj/effect/landmark{ name = "prisonwarp" }, @@ -2876,17 +2874,17 @@ name = "plating" }, /area/prison/solitary) -"ahm" = ( +"ahj" = ( /turf/unsimulated/floor{ icon_state = "panelscorched" }, /area/prison/solitary) -"ahn" = ( +"ahk" = ( /turf/unsimulated/floor{ icon_state = "platingdmg3" }, /area/prison/solitary) -"aho" = ( +"ahl" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2897,7 +2895,7 @@ }, /turf/space/transit/north/shuttlespace_ns3, /area/template_noop) -"ahp" = ( +"ahm" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -2907,7 +2905,7 @@ }, /turf/space/transit/north/shuttlespace_ns4, /area/template_noop) -"ahq" = ( +"ahn" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; name = "escapeshuttle_leave"; @@ -2920,49 +2918,34 @@ }, /turf/template_noop, /area/template_noop) -"ahr" = ( -/turf/space/transit/north/shuttlespace_ns14, -/area/shuttle/escape/transit) -"ahs" = ( +"aho" = ( /obj/structure/bed, /turf/unsimulated/floor{ icon_state = "panelscorched" }, /area/prison/solitary) -"aht" = ( +"ahp" = ( /obj/structure/bed, /obj/effect/decal/cleanable/cobweb, /turf/unsimulated/floor{ name = "plating" }, /area/prison/solitary) -"ahu" = ( -/turf/space/transit/north/shuttlespace_ns3, -/area/shuttle/escape/transit) -"ahv" = ( -/turf/space/transit/north/shuttlespace_ns11, -/area/shuttle/escape/transit) -"ahw" = ( -/turf/space/transit/north/shuttlespace_ns7, -/area/shuttle/escape/transit) -"ahx" = ( -/turf/space/transit/north/shuttlespace_ns4, -/area/shuttle/escape/transit) -"ahy" = ( +"ahq" = ( /obj/effect/decal/cleanable/blood, /turf/unsimulated/wall/riveted, /area/prison/solitary) -"ahz" = ( +"ahr" = ( /turf/unsimulated/floor{ icon_state = "platingdmg1" }, /area/prison/solitary) -"ahA" = ( +"ahs" = ( /turf/unsimulated/floor{ icon_state = "floorscorched2" }, /area/prison/solitary) -"ahB" = ( +"aht" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -2971,7 +2954,7 @@ }, /turf/space/transit/north/shuttlespace_ns12, /area/template_noop) -"ahC" = ( +"ahu" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -2980,7 +2963,7 @@ }, /turf/space/transit/north/shuttlespace_ns7, /area/template_noop) -"ahD" = ( +"ahv" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -2989,7 +2972,7 @@ }, /turf/space/transit/north/shuttlespace_ns9, /area/template_noop) -"ahE" = ( +"ahw" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -2998,7 +2981,7 @@ }, /turf/space/transit/north/shuttlespace_ns4, /area/template_noop) -"ahF" = ( +"ahx" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3007,7 +2990,7 @@ }, /turf/space/transit/north/shuttlespace_ns6, /area/template_noop) -"ahG" = ( +"ahy" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3016,7 +2999,7 @@ }, /turf/space/transit/north/shuttlespace_ns10, /area/template_noop) -"ahH" = ( +"ahz" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3025,7 +3008,7 @@ }, /turf/space/transit/north/shuttlespace_ns3, /area/template_noop) -"ahI" = ( +"ahA" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3034,7 +3017,7 @@ }, /turf/space/transit/north/shuttlespace_ns14, /area/template_noop) -"ahJ" = ( +"ahB" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3043,7 +3026,7 @@ }, /turf/space/transit/north/shuttlespace_ns11, /area/template_noop) -"ahK" = ( +"ahC" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3052,7 +3035,7 @@ }, /turf/space/transit/north/shuttlespace_ns7, /area/template_noop) -"ahL" = ( +"ahD" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 8; @@ -3061,27 +3044,73 @@ }, /turf/space/transit/north/shuttlespace_ns11, /area/template_noop) -"ahM" = ( +"ahE" = ( /turf/space/transit/north/shuttlespace_ns6, /area/syndicate_station/transit) -"ahN" = ( +"ahF" = ( /turf/space/transit/north/shuttlespace_ns8, /area/syndicate_station/transit) -"ahO" = ( +"ahG" = ( /turf/space/transit/north/shuttlespace_ns3, /area/syndicate_station/transit) -"ahP" = ( +"ahH" = ( /turf/space/transit/north/shuttlespace_ns5, /area/syndicate_station/transit) -"ahQ" = ( +"ahI" = ( /turf/space/transit/north/shuttlespace_ns9, /area/syndicate_station/transit) -"ahR" = ( +"ahJ" = ( /turf/space/transit/north/shuttlespace_ns2, /area/syndicate_station/transit) -"ahS" = ( +"ahK" = ( /turf/space/transit/north/shuttlespace_ns13, /area/syndicate_station/transit) +"ahL" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/turf/space/transit/north/shuttlespace_ns6, +/area/template_noop) +"ahM" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/template_noop, +/area/template_noop) +"ahN" = ( +/turf/space/transit/north/shuttlespace_ns11, +/area/syndicate_station/transit) +"ahO" = ( +/turf/space/transit/north/shuttlespace_ns7, +/area/syndicate_station/transit) +"ahP" = ( +/turf/space/transit/north/shuttlespace_ns14, +/area/syndicate_station/transit) +"ahQ" = ( +/turf/space/transit/north/shuttlespace_ns4, +/area/syndicate_station/transit) +"ahR" = ( +/turf/space/transit/north/shuttlespace_ns10, +/area/syndicate_station/transit) +"ahS" = ( +/turf/space/transit/north/shuttlespace_ns1, +/area/syndicate_station/transit) "ahT" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -3089,7 +3118,7 @@ name = "thrower_throwdown"; tiles = 0 }, -/turf/space/transit/north/shuttlespace_ns6, +/turf/space/transit/north/shuttlespace_ns5, /area/template_noop) "ahU" = ( /obj/effect/step_trigger/thrower{ @@ -3098,58 +3127,12 @@ name = "thrower_throwdown"; tiles = 0 }, -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "escapeshuttle_leave"; - teleport_x = 25; - teleport_x_offset = 245; - teleport_y = 25; - teleport_y_offset = 245; - teleport_z = 6; - teleport_z_offset = 6 - }, -/turf/template_noop, +/turf/space/transit/north/shuttlespace_ns3, /area/template_noop) "ahV" = ( -/turf/space/transit/north/shuttlespace_ns11, -/area/syndicate_station/transit) -"ahW" = ( -/turf/space/transit/north/shuttlespace_ns7, -/area/syndicate_station/transit) -"ahX" = ( -/turf/space/transit/north/shuttlespace_ns14, -/area/syndicate_station/transit) -"ahY" = ( -/turf/space/transit/north/shuttlespace_ns4, -/area/syndicate_station/transit) -"ahZ" = ( -/turf/space/transit/north/shuttlespace_ns10, -/area/syndicate_station/transit) -"aia" = ( -/turf/space/transit/north/shuttlespace_ns1, -/area/syndicate_station/transit) -"aib" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 - }, -/turf/space/transit/north/shuttlespace_ns5, -/area/template_noop) -"aic" = ( -/obj/effect/step_trigger/thrower{ - affect_ghosts = 1; - direction = 2; - name = "thrower_throwdown"; - tiles = 0 - }, -/turf/space/transit/north/shuttlespace_ns3, -/area/template_noop) -"aid" = ( /turf/simulated/mineral, /area/template_noop) -"aie" = ( +"ahW" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; name = "escapeshuttle_leave"; @@ -3172,13 +3155,13 @@ }, /turf/space/transit/north/shuttlespace_ns12, /area/template_noop) -"aif" = ( +"ahX" = ( /turf/space/transit/north/shuttlespace_ns12, /area/syndicate_station/transit) -"aig" = ( +"ahY" = ( /turf/space/transit/north/shuttlespace_ns15, /area/syndicate_station/transit) -"aih" = ( +"ahZ" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3187,19 +3170,19 @@ }, /turf/space/transit/north/shuttlespace_ns4, /area/template_noop) -"aii" = ( +"aia" = ( /turf/space/transit/north/shuttlespace_ns3, /area/skipjack_station/transit) -"aij" = ( +"aib" = ( /turf/space/transit/north/shuttlespace_ns2, /area/skipjack_station/transit) -"aik" = ( +"aic" = ( /turf/space/transit/north/shuttlespace_ns6, /area/skipjack_station/transit) -"ail" = ( +"aid" = ( /turf/space/transit/north/shuttlespace_ns11, /area/skipjack_station/transit) -"aim" = ( +"aie" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3208,16 +3191,16 @@ }, /turf/space/transit/north/shuttlespace_ns2, /area/template_noop) -"ain" = ( +"aif" = ( /turf/space/transit/north/shuttlespace_ns1, /area/skipjack_station/transit) -"aio" = ( +"aig" = ( /turf/space/transit/north/shuttlespace_ns5, /area/skipjack_station/transit) -"aip" = ( +"aih" = ( /turf/space/transit/north/shuttlespace_ns10, /area/skipjack_station/transit) -"aiq" = ( +"aii" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 8; @@ -3226,7 +3209,7 @@ }, /turf/space/transit/north/shuttlespace_ns6, /area/template_noop) -"air" = ( +"aij" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 8; @@ -3235,7 +3218,7 @@ }, /turf/space/transit/north/shuttlespace_ns13, /area/template_noop) -"ais" = ( +"aik" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3244,25 +3227,25 @@ }, /turf/space/transit/north/shuttlespace_ns1, /area/template_noop) -"ait" = ( +"ail" = ( /turf/space/transit/north/shuttlespace_ns15, /area/skipjack_station/transit) -"aiu" = ( +"aim" = ( /turf/space/transit/north/shuttlespace_ns4, /area/skipjack_station/transit) -"aiv" = ( +"ain" = ( /turf/space/transit/north/shuttlespace_ns9, /area/skipjack_station/transit) -"aiw" = ( +"aio" = ( /turf/space/transit/north/shuttlespace_ns5, /area/shuttle/escape_pod2/transit) -"aix" = ( +"aip" = ( /turf/space/transit/north/shuttlespace_ns12, /area/shuttle/escape_pod2/transit) -"aiy" = ( +"aiq" = ( /turf/space/transit/north/shuttlespace_ns2, /area/shuttle/escape_pod2/transit) -"aiz" = ( +"air" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3271,7 +3254,7 @@ }, /turf/space/transit/north/shuttlespace_ns15, /area/template_noop) -"aiA" = ( +"ais" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3280,18 +3263,18 @@ }, /turf/space/transit/north/shuttlespace_ns15, /area/template_noop) -"aiB" = ( +"ait" = ( /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"aiC" = ( +"aiu" = ( /turf/template_noop, /turf/simulated/shuttle/wall/dark{ dir = 8; icon_state = "diagonalWall3" }, /area/template_noop) -"aiD" = ( +"aiv" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 }, @@ -3302,34 +3285,34 @@ dir = 4 }, /area/template_noop) -"aiE" = ( +"aiw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/wall, /area/template_noop) -"aiF" = ( +"aix" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/wall, /area/template_noop) -"aiG" = ( +"aiy" = ( /turf/template_noop, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/wall/dark{ icon_state = "swall_c" }, /area/template_noop) -"aiH" = ( +"aiz" = ( /turf/space/transit/north/shuttlespace_ns4, /area/shuttle/escape_pod2/transit) -"aiI" = ( +"aiA" = ( /turf/space/transit/north/shuttlespace_ns11, /area/shuttle/escape_pod2/transit) -"aiJ" = ( +"aiB" = ( /turf/space/transit/north/shuttlespace_ns1, /area/shuttle/escape_pod2/transit) -"aiK" = ( +"aiC" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3338,39 +3321,39 @@ }, /turf/space/transit/north/shuttlespace_ns14, /area/template_noop) -"aiL" = ( +"aiD" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/effect/decal/cleanable/dirt, /turf/template_noop, /area/template_noop) -"aiM" = ( +"aiE" = ( /turf/simulated/shuttle/plating, /area/template_noop) -"aiN" = ( +"aiF" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"aiO" = ( +"aiG" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/floor, /area/template_noop) -"aiP" = ( +"aiH" = ( /obj/structure/grille, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"aiQ" = ( +"aiI" = ( /turf/space/transit/north/shuttlespace_ns3, /area/shuttle/escape_pod2/transit) -"aiR" = ( +"aiJ" = ( /turf/space/transit/north/shuttlespace_ns10, /area/shuttle/escape_pod2/transit) -"aiS" = ( +"aiK" = ( /turf/space/transit/north/shuttlespace_ns15, /area/shuttle/escape_pod2/transit) -"aiT" = ( +"aiL" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3379,7 +3362,7 @@ }, /turf/space/transit/north/shuttlespace_ns1, /area/template_noop) -"aiU" = ( +"aiM" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3388,7 +3371,7 @@ }, /turf/space/transit/north/shuttlespace_ns5, /area/template_noop) -"aiV" = ( +"aiN" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3397,7 +3380,7 @@ }, /turf/space/transit/north/shuttlespace_ns13, /area/template_noop) -"aiW" = ( +"aiO" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3406,21 +3389,21 @@ }, /turf/space/transit/north/shuttlespace_ns10, /area/template_noop) -"aiX" = ( +"aiP" = ( /obj/item/stack/material/cyborg/steel, /turf/template_noop, /area/template_noop) -"aiY" = ( +"aiQ" = ( /obj/item/weapon/material/shard/shrapnel, /turf/template_noop, /area/template_noop) -"aiZ" = ( +"aiR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"aja" = ( +"aiS" = ( /turf/template_noop, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/wall/dark{ @@ -3428,13 +3411,13 @@ dir = 8 }, /area/template_noop) -"ajb" = ( +"aiT" = ( /turf/space/transit/north/shuttlespace_ns9, /area/shuttle/escape_pod2/transit) -"ajc" = ( +"aiU" = ( /turf/space/transit/north/shuttlespace_ns14, /area/shuttle/escape_pod2/transit) -"ajd" = ( +"aiV" = ( /turf/template_noop, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/wall/dark{ @@ -3442,19 +3425,19 @@ dir = 4 }, /area/template_noop) -"aje" = ( +"aiW" = ( /obj/item/stack/rods, /turf/template_noop, /area/template_noop) -"ajf" = ( +"aiX" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/floor, /area/template_noop) -"ajg" = ( +"aiY" = ( /turf/template_noop, /area/shuttle/escape_pod2/centcom) -"ajh" = ( +"aiZ" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3463,7 +3446,7 @@ }, /turf/space/transit/north/shuttlespace_ns13, /area/template_noop) -"aji" = ( +"aja" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -3472,29 +3455,29 @@ }, /turf/space/transit/north/shuttlespace_ns2, /area/template_noop) -"ajj" = ( +"ajb" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/wall, /area/template_noop) -"ajk" = ( +"ajc" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/floor, /area/template_noop) -"ajl" = ( +"ajd" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"ajm" = ( +"aje" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"ajo" = ( +"ajf" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 8; @@ -3503,10 +3486,10 @@ }, /turf/space/transit/north/shuttlespace_ns12, /area/template_noop) -"ajp" = ( +"ajg" = ( /turf/space/transit/north/shuttlespace_ns8, /area/skipjack_station/transit) -"ajq" = ( +"ajh" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/wall{ @@ -3514,7 +3497,7 @@ dir = 1 }, /area/template_noop) -"ajr" = ( +"aji" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 8; @@ -3523,7 +3506,7 @@ }, /turf/space/transit/north/shuttlespace_ns5, /area/template_noop) -"ajs" = ( +"ajj" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 8; @@ -3532,7 +3515,7 @@ }, /turf/space/transit/north/shuttlespace_ns7, /area/template_noop) -"ajt" = ( +"ajk" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 8; @@ -3541,38 +3524,38 @@ }, /turf/space/transit/north/shuttlespace_ns9, /area/template_noop) -"aju" = ( +"ajl" = ( /turf/space/transit/north/shuttlespace_ns7, /area/skipjack_station/transit) -"ajv" = ( +"ajm" = ( /turf/simulated/shuttle/wall/dark, /area/template_noop) -"ajw" = ( +"ajn" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'ESTIMATED PICKUP TIME: 2-4 DAYS. CONSERVE RESOURCES.'."; name = "\improper NSS AURORA II ESCAPE POD ZONE" }, /turf/simulated/wall/r_wall, /area/template_noop) -"ajx" = ( +"ajo" = ( /turf/space/transit/north/shuttlespace_ns4, /area/shuttle/escape_pod1/transit) -"ajy" = ( +"ajp" = ( /turf/space/transit/north/shuttlespace_ns6, /area/shuttle/escape_pod1/transit) -"ajz" = ( +"ajq" = ( /turf/space/transit/north/shuttlespace_ns1, /area/shuttle/escape_pod1/transit) -"ajA" = ( +"ajr" = ( /turf/space/transit/north/shuttlespace_ns11, /area/shuttle/escape_pod3/transit) -"ajB" = ( +"ajs" = ( /turf/space/transit/north/shuttlespace_ns8, /area/shuttle/escape_pod3/transit) -"ajC" = ( +"ajt" = ( /turf/space/transit/north/shuttlespace_ns4, /area/shuttle/escape_pod3/transit) -"ajE" = ( +"aju" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -3591,59 +3574,59 @@ }, /turf/simulated/shuttle/plating, /area/template_noop) -"ajF" = ( +"ajv" = ( /turf/space/transit/north/shuttlespace_ns3, /area/shuttle/escape_pod1/transit) -"ajG" = ( +"ajw" = ( /turf/space/transit/north/shuttlespace_ns5, /area/shuttle/escape_pod1/transit) -"ajH" = ( +"ajx" = ( /turf/space/transit/north/shuttlespace_ns15, /area/shuttle/escape_pod1/transit) -"ajI" = ( +"ajy" = ( /turf/space/transit/north/shuttlespace_ns10, /area/shuttle/escape_pod3/transit) -"ajJ" = ( +"ajz" = ( /turf/space/transit/north/shuttlespace_ns7, /area/shuttle/escape_pod3/transit) -"ajK" = ( +"ajA" = ( /turf/space/transit/north/shuttlespace_ns3, /area/shuttle/escape_pod3/transit) -"ajL" = ( +"ajB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'ESTIMATED PICKUP TIME: 2-4 DAYS. CONSERVE RESOURCES.'."; name = "\improper NSS AURORA II ESCAPE POD ZONE" }, /turf/simulated/shuttle/wall/dark, /area/template_noop) -"ajO" = ( +"ajC" = ( /turf/space/transit/north/shuttlespace_ns7, /area/shuttle/escape_pod1/transit) -"ajP" = ( +"ajD" = ( /turf/space/transit/north/shuttlespace_ns13, /area/shuttle/escape_pod1/transit) -"ajQ" = ( +"ajE" = ( /turf/space/transit/north/shuttlespace_ns2, /area/shuttle/escape_pod1/transit) -"ajR" = ( +"ajF" = ( /turf/space/transit/north/shuttlespace_ns13, /area/shuttle/escape_pod3/transit) -"ajS" = ( +"ajG" = ( /turf/space/transit/north/shuttlespace_ns6, /area/shuttle/escape_pod3/transit) -"ajT" = ( +"ajH" = ( /turf/unsimulated/wall, /area/syndicate_mothership) -"ajU" = ( +"ajI" = ( /turf/unsimulated/wall/riveted, /area/syndicate_mothership) -"ajV" = ( +"ajJ" = ( /turf/simulated/shuttle/wall/dark, /area/syndicate_mothership) -"ajW" = ( +"ajK" = ( /turf/template_noop, /area/shuttle/escape_pod1/centcom) -"ajX" = ( +"ajL" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 }, @@ -3653,16 +3636,16 @@ dir = 8 }, /area/template_noop) -"ajZ" = ( +"ajM" = ( /turf/space/transit/north/shuttlespace_ns12, /area/shuttle/escape_pod1/transit) -"aka" = ( +"ajN" = ( /turf/space/transit/north/shuttlespace_ns12, /area/shuttle/escape_pod3/transit) -"akb" = ( +"ajO" = ( /turf/space/transit/north/shuttlespace_ns5, /area/shuttle/escape_pod3/transit) -"akc" = ( +"ajP" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3671,33 +3654,33 @@ }, /turf/space/transit/north/shuttlespace_ns12, /area/template_noop) -"ake" = ( +"ajQ" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_r"; dir = 1 }, /turf/template_noop, /area/shuttle/syndicate_elite/mothership) -"akf" = ( +"ajR" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; dir = 1 }, /turf/template_noop, /area/shuttle/syndicate_elite/mothership) -"akg" = ( +"ajS" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l"; dir = 1 }, /turf/template_noop, /area/shuttle/syndicate_elite/mothership) -"akj" = ( +"ajT" = ( /turf/simulated/shuttle/wall/dark, /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"akk" = ( +"ajU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3713,13 +3696,13 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"akm" = ( +"ajV" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 }, /turf/template_noop, /area/template_noop) -"akn" = ( +"ajW" = ( /obj/structure/shuttle/engine/propulsion/burst, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3728,16 +3711,16 @@ dir = 1 }, /area/template_noop) -"ako" = ( +"ajX" = ( /turf/template_noop, /area/shuttle/escape_pod3/centcom) -"akp" = ( +"ajY" = ( /obj/structure/window/shuttle, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"akq" = ( +"ajZ" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -3745,13 +3728,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/floor, /area/template_noop) -"akr" = ( +"aka" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, /turf/simulated/shuttle/floor, /area/template_noop) -"aks" = ( +"akb" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -3762,7 +3745,7 @@ }, /turf/simulated/shuttle/floor, /area/template_noop) -"akt" = ( +"akc" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -3773,7 +3756,7 @@ }, /turf/simulated/shuttle/plating, /area/template_noop) -"aku" = ( +"akd" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3782,10 +3765,10 @@ }, /turf/space/transit/north/shuttlespace_ns11, /area/template_noop) -"akv" = ( +"ake" = ( /turf/simulated/shuttle/wall/dark, /area/shuttle/syndicate_elite/mothership) -"akw" = ( +"akf" = ( /obj/structure/window/reinforced, /obj/structure/shuttle/engine/heater{ icon_state = "heater"; @@ -3793,7 +3776,7 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_elite/mothership) -"akx" = ( +"akg" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; prices = list() @@ -3804,14 +3787,14 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"aky" = ( +"akh" = ( /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"akz" = ( +"aki" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit/improved, /turf/simulated/shuttle/floor{ @@ -3820,12 +3803,12 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"akA" = ( +"akj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"akB" = ( +"akk" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 }, @@ -3836,7 +3819,7 @@ dir = 8 }, /area/template_noop) -"akC" = ( +"akl" = ( /obj/effect/landmark{ name = "Syndicate-Commando-Bomb" }, @@ -3844,7 +3827,7 @@ icon_state = "floor4" }, /area/shuttle/syndicate_elite/mothership) -"akD" = ( +"akm" = ( /mob/living/silicon/decoy{ icon_state = "ai-malf"; name = "GLaDOS" @@ -3853,7 +3836,7 @@ icon_state = "whiteshiny" }, /area/syndicate_mothership/control) -"akE" = ( +"akn" = ( /obj/item/device/radio/intercom{ broadcasting = 1; dir = 1; @@ -3871,7 +3854,7 @@ icon_state = "circuit" }, /area/syndicate_mothership) -"akF" = ( +"ako" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -3886,7 +3869,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"akG" = ( +"akp" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3895,7 +3878,7 @@ }, /turf/space/transit/north/shuttlespace_ns9, /area/template_noop) -"akH" = ( +"akq" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -3903,12 +3886,12 @@ icon_state = "floor4" }, /area/shuttle/syndicate_elite/mothership) -"akI" = ( +"akr" = ( /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/shuttle/syndicate_elite/mothership) -"akJ" = ( +"aks" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -3916,7 +3899,7 @@ icon_state = "floor4" }, /area/shuttle/syndicate_elite/mothership) -"akK" = ( +"akt" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -3928,7 +3911,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"akL" = ( +"aku" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "escape_pod_1_recovery"; @@ -3947,7 +3930,7 @@ }, /turf/simulated/shuttle/plating, /area/template_noop) -"akM" = ( +"akv" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -3956,13 +3939,13 @@ }, /turf/space/transit/north/shuttlespace_ns8, /area/template_noop) -"akN" = ( +"akw" = ( /turf/template_noop, /area/syndicate_mothership/elite_squad) -"akO" = ( +"akx" = ( /turf/simulated/shuttle/wall/dark, /area/syndicate_mothership/elite_squad) -"akP" = ( +"aky" = ( /obj/machinery/computer/pod{ id = "syndicate_elite"; name = "Hull Door Control" @@ -3971,7 +3954,7 @@ icon_state = "floor4" }, /area/syndicate_mothership/elite_squad) -"akQ" = ( +"akz" = ( /obj/item/device/radio/intercom{ broadcasting = 1; dir = 1; @@ -3986,7 +3969,7 @@ icon_state = "floor4" }, /area/syndicate_mothership/elite_squad) -"akR" = ( +"akA" = ( /obj/effect/landmark{ name = "Syndicate-Commando" }, @@ -3994,29 +3977,29 @@ icon_state = "floor4" }, /area/syndicate_mothership/elite_squad) -"akS" = ( +"akB" = ( /turf/unsimulated/floor{ icon_state = "floor4" }, /area/syndicate_mothership/elite_squad) -"akT" = ( +"akC" = ( /obj/machinery/mech_recharger, /turf/unsimulated/floor{ icon_state = "floor4" }, /area/syndicate_mothership/elite_squad) -"akU" = ( +"akD" = ( /obj/mecha/combat/marauder/mauler, /turf/unsimulated/floor{ icon_state = "floor4" }, /area/syndicate_mothership) -"akV" = ( +"akE" = ( /turf/unsimulated/floor{ icon_state = "floor4" }, /area/syndicate_mothership) -"akW" = ( +"akF" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -4029,7 +4012,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"akX" = ( +"akG" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "escape_pod_3_recovery"; @@ -4048,7 +4031,7 @@ }, /turf/simulated/shuttle/plating, /area/template_noop) -"akY" = ( +"akH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -4064,7 +4047,7 @@ name = "plating" }, /area/syndicate_mothership/elite_squad) -"akZ" = ( +"akI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4077,7 +4060,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"alb" = ( +"akJ" = ( /obj/machinery/door/airlock/external{ name = "Shuttle Airlock"; req_access = list(150) @@ -4094,12 +4077,12 @@ icon_state = "floor4" }, /area/shuttle/syndicate_elite/mothership) -"alc" = ( +"akK" = ( /turf/unsimulated/floor{ name = "plating" }, /area/syndicate_mothership/elite_squad) -"ald" = ( +"akL" = ( /obj/machinery/door/airlock/external{ req_access = list(150) }, @@ -4107,37 +4090,37 @@ name = "plating" }, /area/syndicate_mothership/elite_squad) -"ale" = ( +"akM" = ( /obj/machinery/computer/teleporter, /turf/simulated/floor/plating, /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"alf" = ( +"akN" = ( /obj/machinery/teleport/station, /turf/simulated/floor/plating, /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"alg" = ( +"akO" = ( /obj/machinery/teleport/hub, /turf/simulated/floor/plating, /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"alh" = ( +"akP" = ( /obj/structure/grille, /obj/structure/window/shuttle, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating, /area/template_noop) -"ali" = ( +"akQ" = ( /turf/template_noop, /turf/simulated/shuttle/wall/dark{ icon_state = "swall_c" }, /area/template_noop) -"alj" = ( +"akR" = ( /obj/machinery/door/airlock/glass_security{ name = "Airlock"; req_access = list(150) @@ -4151,7 +4134,7 @@ icon_state = "floor4" }, /area/syndicate_mothership/elite_squad) -"alk" = ( +"akS" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 @@ -4160,7 +4143,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"all" = ( +"akT" = ( /obj/machinery/computer/pod{ id = "syndicate_elite"; name = "Hull Door Control" @@ -4170,14 +4153,14 @@ icon_state = "floor4" }, /area/shuttle/syndicate_elite/mothership) -"alm" = ( +"akU" = ( /obj/machinery/computer/syndicate_elite_shuttle, /obj/machinery/light/small/red, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/shuttle/syndicate_elite/mothership) -"alo" = ( +"akV" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l" }, @@ -4185,13 +4168,13 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"alp" = ( +"akW" = ( /obj/structure/shuttle/engine/propulsion, /turf/template_noop, /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"alq" = ( +"akX" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_r" }, @@ -4199,7 +4182,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"als" = ( +"akY" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 4; @@ -4208,7 +4191,7 @@ }, /turf/space/transit/north/shuttlespace_ns8, /area/template_noop) -"alu" = ( +"akZ" = ( /obj/machinery/door/airlock/external{ name = "Shuttle Airlock"; req_access = list(150) @@ -4222,13 +4205,13 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/syndicate_elite/mothership) -"alw" = ( +"ala" = ( /turf/template_noop, /area/syndicate_mothership) -"alx" = ( +"alb" = ( /turf/template_noop, /area/shuttle/syndicate_elite/mothership) -"aly" = ( +"alc" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -4257,22 +4240,22 @@ }, /turf/template_noop, /area/template_noop) -"alz" = ( +"ald" = ( /obj/structure/grille, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"alA" = ( +"ale" = ( /obj/structure/lattice, /obj/structure/grille, /turf/template_noop, /area/template_noop) -"alB" = ( +"alf" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/template_noop, /area/template_noop) -"alC" = ( +"alg" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp{ pixel_x = 4; @@ -4282,7 +4265,7 @@ icon_state = "grimy" }, /area/syndicate_mothership) -"alD" = ( +"alh" = ( /obj/structure/table/standard, /obj/effect/landmark{ name = "Nuclear-Code" @@ -4291,7 +4274,7 @@ icon_state = "grimy" }, /area/syndicate_mothership) -"alE" = ( +"ali" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -4304,20 +4287,20 @@ icon_state = "grimy" }, /area/syndicate_mothership) -"alF" = ( +"alj" = ( /turf/unsimulated/wall/fakeglass{ dir = 1; icon_state = "fakewindows" }, /area/syndicate_mothership) -"alG" = ( +"alk" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/hos, /turf/unsimulated/floor{ icon_state = "grimy" }, /area/syndicate_mothership) -"alH" = ( +"all" = ( /obj/effect/landmark{ name = "Syndicate-Spawn" }, @@ -4325,33 +4308,33 @@ icon_state = "grimy" }, /area/syndicate_mothership) -"alI" = ( +"alm" = ( /turf/unsimulated/floor{ icon_state = "grimy" }, /area/syndicate_mothership) -"alJ" = ( +"aln" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows2"; dir = 1 }, /area/syndicate_mothership) -"alK" = ( +"alo" = ( /turf/unsimulated/wall/fakeglass, /area/syndicate_mothership) -"alL" = ( +"alp" = ( /obj/item/device/pda/syndicate, /turf/unsimulated/floor{ icon_state = "grimy" }, /area/syndicate_mothership) -"alM" = ( +"alq" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor{ icon_state = "grimy" }, /area/syndicate_mothership) -"alN" = ( +"alr" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -4363,7 +4346,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"alO" = ( +"als" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -4373,7 +4356,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"alP" = ( +"alt" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -4386,7 +4369,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"alQ" = ( +"alu" = ( /obj/machinery/door/airlock/centcom{ name = "Barracks"; opacity = 1; @@ -4396,7 +4379,7 @@ icon_state = "grimy" }, /area/syndicate_mothership) -"alS" = ( +"alv" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4414,7 +4397,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"alT" = ( +"alw" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4429,7 +4412,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"alU" = ( +"alx" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4447,7 +4430,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"alW" = ( +"aly" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -4459,13 +4442,13 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"alX" = ( +"alz" = ( /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/syndicate_mothership) -"alY" = ( +"alA" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, @@ -4474,7 +4457,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"alZ" = ( +"alB" = ( /obj/structure/sign/double/map/right{ pixel_y = 32 }, @@ -4483,7 +4466,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"ama" = ( +"alC" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; prices = list() @@ -4493,7 +4476,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amb" = ( +"alD" = ( /obj/structure/table/standard, /obj/machinery/chemical_dispenser/bar_soft/full{ pixel_x = 2; @@ -4503,7 +4486,7 @@ icon_state = "white" }, /area/syndicate_mothership) -"amc" = ( +"alE" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/drinkingglasses{ pixel_x = 1; @@ -4513,7 +4496,7 @@ icon_state = "white" }, /area/syndicate_mothership) -"amd" = ( +"alF" = ( /obj/structure/sink/kitchen{ pixel_y = 28 }, @@ -4521,41 +4504,41 @@ icon_state = "white" }, /area/syndicate_mothership) -"ame" = ( +"alG" = ( /obj/structure/closet/secure_closet/freezer/fridge, /turf/unsimulated/floor{ icon_state = "white" }, /area/syndicate_mothership) -"amf" = ( +"alH" = ( /turf/simulated/shuttle/wall/dark, /area/syndicate_station/start) -"amg" = ( +"alI" = ( /obj/machinery/recharger, /obj/structure/table/reinforced, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"amh" = ( +"alJ" = ( /obj/machinery/computer/security/nuclear, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"ami" = ( +"alK" = ( /obj/machinery/computer/shuttle_control/multi/syndicate, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"amj" = ( +"alL" = ( /obj/structure/computerframe, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"amk" = ( +"alM" = ( /obj/machinery/button/remote/blast_door{ id = "syndieshutters"; name = "remote shutter control"; @@ -4566,14 +4549,14 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aml" = ( +"alN" = ( /obj/structure/bed/chair/comfy/black, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/syndicate_mothership) -"amm" = ( +"alO" = ( /obj/machinery/door/airlock/centcom{ name = "Kitchen"; opacity = 1; @@ -4583,12 +4566,12 @@ icon_state = "white" }, /area/syndicate_mothership) -"amn" = ( +"alP" = ( /turf/unsimulated/floor{ icon_state = "white" }, /area/syndicate_mothership) -"amo" = ( +"alQ" = ( /obj/structure/table/reinforced, /obj/machinery/microwave{ pixel_x = -1; @@ -4598,7 +4581,7 @@ icon_state = "white" }, /area/syndicate_mothership) -"amp" = ( +"alR" = ( /obj/machinery/microwave{ pixel_x = -1; pixel_y = 2 @@ -4608,12 +4591,12 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amq" = ( +"alS" = ( /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"amr" = ( +"alT" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -4621,7 +4604,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"ams" = ( +"alU" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -4630,7 +4613,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amt" = ( +"alV" = ( /obj/item/weapon/folder{ pixel_y = 2 }, @@ -4640,7 +4623,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amu" = ( +"alW" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -4654,7 +4637,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amv" = ( +"alX" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, @@ -4663,7 +4646,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amw" = ( +"alY" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/donkpockets{ pixel_x = 3; @@ -4673,7 +4656,7 @@ icon_state = "white" }, /area/syndicate_mothership) -"amx" = ( +"alZ" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/green, @@ -4683,12 +4666,12 @@ icon_state = "dark" }, /area/syndicate_mothership) -"amy" = ( +"ama" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership) -"amz" = ( +"amb" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/blue, @@ -4698,7 +4681,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"amA" = ( +"amc" = ( /obj/item/weapon/storage/box/donkpockets{ pixel_x = 2; pixel_y = 3 @@ -4713,7 +4696,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amB" = ( +"amd" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -4721,7 +4704,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amC" = ( +"ame" = ( /obj/structure/computerframe, /obj/machinery/light{ dir = 4 @@ -4730,7 +4713,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amD" = ( +"amf" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, @@ -4739,7 +4722,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amE" = ( +"amg" = ( /obj/machinery/vending/cola{ name = "hacked Robust Softdrinks"; prices = list() @@ -4749,7 +4732,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amF" = ( +"amh" = ( /obj/structure/closet/secure_closet/freezer/kitchen{ req_access = list(150) }, @@ -4757,7 +4740,7 @@ icon_state = "white" }, /area/syndicate_mothership) -"amG" = ( +"ami" = ( /obj/structure/table/reinforced, /obj/item/weapon/tray{ pixel_y = 5 @@ -4766,7 +4749,7 @@ icon_state = "white" }, /area/syndicate_mothership) -"amH" = ( +"amj" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{ pixel_x = 3; @@ -4780,7 +4763,7 @@ icon_state = "white" }, /area/syndicate_mothership) -"amI" = ( +"amk" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/med, @@ -4790,7 +4773,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"amJ" = ( +"aml" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/orange, @@ -4800,7 +4783,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"amK" = ( +"amm" = ( /obj/item/stack/material/glass{ amount = 15 }, @@ -4813,7 +4796,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amL" = ( +"amn" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; frequency = 1213; @@ -4827,7 +4810,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amM" = ( +"amo" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; pixel_y = 8 @@ -4839,7 +4822,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amN" = ( +"amp" = ( /obj/machinery/vending/cigarette{ name = "hacked cigarette machine"; prices = list(); @@ -4850,7 +4833,7 @@ icon_state = "cult" }, /area/syndicate_mothership) -"amO" = ( +"amq" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/engie, @@ -4860,7 +4843,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"amP" = ( +"amr" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/red, @@ -4870,14 +4853,14 @@ icon_state = "dark" }, /area/syndicate_mothership) -"amQ" = ( +"ams" = ( /turf/template_noop, /turf/simulated/shuttle/wall/dark{ dir = 5; icon_state = "diagonalWall3" }, /area/syndicate_station/start) -"amR" = ( +"amt" = ( /obj/machinery/door/window/northright{ name = "Flight Deck"; req_access = list(150) @@ -4886,7 +4869,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"amT" = ( +"amu" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -4896,7 +4879,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"amU" = ( +"amv" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -4909,13 +4892,13 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"amV" = ( +"amw" = ( /turf/unsimulated/floor{ icon_state = "bar"; dir = 2 }, /area/syndicate_mothership) -"amW" = ( +"amx" = ( /obj/structure/urinal{ pixel_y = 32 }, @@ -4924,7 +4907,7 @@ dir = 2 }, /area/syndicate_mothership) -"amX" = ( +"amy" = ( /obj/machinery/shower{ pixel_y = 32 }, @@ -4936,7 +4919,7 @@ dir = 2 }, /area/syndicate_mothership) -"amY" = ( +"amz" = ( /obj/machinery/shower{ pixel_y = 32 }, @@ -4946,7 +4929,7 @@ dir = 2 }, /area/syndicate_mothership) -"amZ" = ( +"amA" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black, @@ -4956,7 +4939,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"ana" = ( +"amB" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/vest/merc{ pixel_x = 2; @@ -4977,7 +4960,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anb" = ( +"amC" = ( /obj/structure/closet/secure_closet/medical_wall{ pixel_x = -32; pixel_y = 0; @@ -4995,7 +4978,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anc" = ( +"amD" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -5003,7 +4986,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"and" = ( +"amE" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -5014,7 +4997,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"ane" = ( +"amF" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, @@ -5022,7 +5005,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anf" = ( +"amG" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/military, /obj/item/weapon/storage/belt/military, @@ -5032,7 +5015,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"ang" = ( +"amH" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -5047,7 +5030,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"anh" = ( +"amI" = ( /obj/machinery/door/airlock/centcom{ name = "Bathroom"; opacity = 1 @@ -5057,13 +5040,13 @@ dir = 2 }, /area/syndicate_mothership) -"ani" = ( +"amJ" = ( /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/syndicate_mothership) -"anj" = ( +"amK" = ( /obj/machinery/shower{ dir = 1 }, @@ -5072,7 +5055,7 @@ dir = 2 }, /area/syndicate_mothership) -"ank" = ( +"amL" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -25 }, @@ -5080,7 +5063,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anl" = ( +"amM" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -5091,7 +5074,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anm" = ( +"amN" = ( /obj/structure/closet, /obj/item/weapon/pickaxe/diamonddrill, /obj/item/weapon/pickaxe/diamonddrill, @@ -5100,7 +5083,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"ann" = ( +"amO" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -5113,7 +5096,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"ano" = ( +"amP" = ( /obj/structure/mirror{ dir = 4; pixel_x = -32; @@ -5130,7 +5113,7 @@ dir = 2 }, /area/syndicate_mothership) -"anp" = ( +"amQ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -5146,7 +5129,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"anq" = ( +"amR" = ( /obj/machinery/door/airlock/centcom{ name = "Suit Storage"; opacity = 1 @@ -5155,7 +5138,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anr" = ( +"amS" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -25 }, @@ -5168,7 +5151,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"ans" = ( +"amT" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/snacks/liquidfood, /obj/item/weapon/reagent_containers/food/snacks/liquidfood, @@ -5181,7 +5164,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"ant" = ( +"amU" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/ionrifle, /obj/machinery/recharger/wallcharger{ @@ -5192,7 +5175,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anu" = ( +"amV" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/a10mm, /obj/item/ammo_magazine/a10mm, @@ -5207,7 +5190,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anv" = ( +"amW" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/c762, /obj/item/ammo_magazine/c762, @@ -5219,7 +5202,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anw" = ( +"amX" = ( /obj/structure/sign/poster{ poster_type = "/datum/poster/bay_50"; pixel_x = -32 @@ -5228,7 +5211,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anx" = ( +"amY" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/snacks/tastybread, /obj/item/weapon/reagent_containers/food/snacks/tastybread, @@ -5238,12 +5221,12 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"any" = ( +"amZ" = ( /obj/structure/window/reinforced, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"anz" = ( +"ana" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1331; id_tag = "merc_base"; @@ -5255,7 +5238,7 @@ dir = 2 }, /area/syndicate_mothership) -"anA" = ( +"anb" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/black_pouches, /obj/item/clothing/accessory/storage/black_pouches, @@ -5267,7 +5250,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anB" = ( +"anc" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/brown_pouches, /obj/item/clothing/accessory/storage/brown_pouches, @@ -5279,7 +5262,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anC" = ( +"and" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/white_pouches, /obj/item/clothing/accessory/storage/white_pouches, @@ -5291,7 +5274,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anD" = ( +"ane" = ( /obj/machinery/suit_cycler/syndicate{ locked = 0 }, @@ -5299,7 +5282,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anE" = ( +"anf" = ( /obj/structure/toilet{ dir = 4 }, @@ -5307,7 +5290,7 @@ icon_state = "floor7" }, /area/syndicate_station/start) -"anF" = ( +"ang" = ( /obj/machinery/flasher{ id = "syndieflash"; pixel_x = 0; @@ -5320,13 +5303,13 @@ icon_state = "floor7" }, /area/syndicate_station/start) -"anG" = ( +"anh" = ( /obj/item/device/radio/electropack, /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/syndicate_station/start) -"anH" = ( +"ani" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; frequency = 1213; @@ -5340,7 +5323,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anI" = ( +"anj" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = 28 }, @@ -5348,7 +5331,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anJ" = ( +"ank" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; frequency = 1331; @@ -5358,7 +5341,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anK" = ( +"anl" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, @@ -5375,7 +5358,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anL" = ( +"anm" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1331; @@ -5392,7 +5375,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anM" = ( +"ann" = ( /obj/machinery/door/airlock/external{ density = 1; frequency = 1331; @@ -5410,7 +5393,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"anN" = ( +"ano" = ( /obj/machinery/door/airlock/external{ frequency = 1331; id_tag = "merc_base_hatch"; @@ -5420,7 +5403,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anO" = ( +"anp" = ( /obj/machinery/door/airlock/vault{ name = "Armory"; req_access = list(150) @@ -5429,7 +5412,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anP" = ( +"anq" = ( /obj/effect/landmark{ name = "Syndicate-Uplink" }, @@ -5437,13 +5420,13 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anQ" = ( +"anr" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership) -"anR" = ( +"ans" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -5459,18 +5442,18 @@ icon_state = "floor7" }, /area/syndicate_station/start) -"anS" = ( +"ant" = ( /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/syndicate_station/start) -"anT" = ( +"anu" = ( /obj/item/weapon/cigbutt, /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/syndicate_station/start) -"anU" = ( +"anv" = ( /obj/machinery/door/window{ dir = 2; name = "Seating"; @@ -5480,7 +5463,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anV" = ( +"anw" = ( /obj/structure/table/standard, /obj/machinery/computer/pod/old/syndicate{ id = "smindicate" @@ -5494,13 +5477,13 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anW" = ( +"anx" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"anX" = ( +"any" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1331; @@ -5510,7 +5493,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"anY" = ( +"anz" = ( /obj/structure/table/rack, /obj/item/weapon/tank/jetpack/oxygen, /obj/item/weapon/tank/jetpack/oxygen, @@ -5522,7 +5505,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"anZ" = ( +"anA" = ( /obj/structure/table/rack, /obj/item/weapon/tank/jetpack/carbondioxide, /obj/item/weapon/tank/jetpack/carbondioxide, @@ -5534,7 +5517,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aoa" = ( +"anB" = ( /obj/structure/table/rack, /obj/item/device/binoculars, /obj/item/device/binoculars, @@ -5543,13 +5526,13 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aob" = ( +"anC" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership) -"aoc" = ( +"anD" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -5565,7 +5548,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aod" = ( +"anE" = ( /obj/machinery/door/window{ dir = 1; name = "Cell"; @@ -5583,7 +5566,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoe" = ( +"anF" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -5593,7 +5576,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aof" = ( +"anG" = ( /obj/machinery/vending/assist{ contraband = null; name = "AntagCorpVend"; @@ -5606,7 +5589,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aog" = ( +"anH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -5620,7 +5603,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"aoh" = ( +"anI" = ( /obj/machinery/door/airlock/external{ frequency = 1331; id_tag = "merc_shuttle_inner"; @@ -5632,14 +5615,14 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoi" = ( +"anJ" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/lattice, /turf/template_noop, /area/template_noop) -"aoj" = ( +"anK" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -5652,7 +5635,7 @@ icon_state = "floor5" }, /area/syndicate_mothership) -"aok" = ( +"anL" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/handcuffs{ pixel_x = 4; @@ -5664,7 +5647,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aol" = ( +"anM" = ( /obj/structure/table/rack, /obj/item/weapon/pinpointer/nukeop, /obj/item/weapon/pinpointer/nukeop, @@ -5682,7 +5665,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aom" = ( +"anN" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/gun, /obj/item/weapon/gun/energy/gun, @@ -5695,7 +5678,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aon" = ( +"anO" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit/improved, /obj/item/device/suit_cooling_unit/improved, @@ -5709,7 +5692,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aoo" = ( +"anP" = ( /obj/machinery/vending/cigarette{ name = "hacked cigarette machine"; prices = list(); @@ -5719,7 +5702,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aop" = ( +"anQ" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -5733,7 +5716,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoq" = ( +"anR" = ( /obj/machinery/atmospherics/pipe/tank/air{ dir = 4; start_pressure = 740.5 @@ -5742,7 +5725,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aor" = ( +"anS" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -5751,7 +5734,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aos" = ( +"anT" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1331; @@ -5769,7 +5752,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aot" = ( +"anU" = ( /obj/machinery/suit_cycler/syndicate{ locked = 0 }, @@ -5777,7 +5760,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aou" = ( +"anV" = ( /obj/machinery/door/airlock/centcom{ name = "Hardsuit Storage"; opacity = 1 @@ -5786,7 +5769,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aov" = ( +"anW" = ( /obj/item/weapon/material/kitchen/utensil/knife{ pixel_x = -6 }, @@ -5812,7 +5795,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aow" = ( +"anX" = ( /obj/machinery/door/window{ dir = 4; name = "Brig"; @@ -5822,7 +5805,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aox" = ( +"anY" = ( /obj/machinery/door/window{ base_state = "right"; dir = 8; @@ -5834,7 +5817,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoy" = ( +"anZ" = ( /obj/structure/closet/syndicate/suit{ name = "suit closet" }, @@ -5845,7 +5828,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoz" = ( +"aoa" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/void/merc, @@ -5855,7 +5838,7 @@ icon_state = "dark" }, /area/syndicate_mothership) -"aoA" = ( +"aob" = ( /obj/structure/closet{ name = "custodial" }, @@ -5866,7 +5849,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoB" = ( +"aoc" = ( /obj/machinery/door/window{ base_state = "right"; dir = 4; @@ -5878,7 +5861,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoC" = ( +"aod" = ( /obj/machinery/door/window{ base_state = "left"; dir = 8; @@ -5890,7 +5873,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoD" = ( +"aoe" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/syndicate{ pixel_x = -1; @@ -5900,7 +5883,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoE" = ( +"aof" = ( /obj/machinery/sleeper{ dir = 4 }, @@ -5908,12 +5891,12 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aoF" = ( +"aog" = ( /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/syndicate_station/start) -"aoG" = ( +"aoh" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -5922,7 +5905,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aoH" = ( +"aoi" = ( /obj/structure/table/standard, /obj/item/roller{ pixel_y = 8 @@ -5934,7 +5917,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aoI" = ( +"aoj" = ( /obj/structure/table/standard, /obj/structure/closet/secure_closet/medical_wall{ pixel_y = 32; @@ -5959,7 +5942,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aoJ" = ( +"aok" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; frequency = 1213; @@ -5977,7 +5960,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoK" = ( +"aol" = ( /obj/machinery/light{ dir = 4 }, @@ -5985,7 +5968,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoL" = ( +"aom" = ( /obj/item/clothing/gloves/yellow, /obj/item/device/assembly/signaler{ pixel_y = 2 @@ -6001,7 +5984,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoM" = ( +"aon" = ( /obj/item/clothing/gloves/yellow, /obj/item/device/assembly/signaler{ pixel_y = 2 @@ -6012,7 +5995,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoN" = ( +"aoo" = ( /obj/item/clothing/gloves/yellow, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; @@ -6024,7 +6007,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoO" = ( +"aop" = ( /obj/item/clothing/gloves/yellow, /obj/item/device/assembly/prox_sensor{ pixel_x = -8; @@ -6039,7 +6022,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoP" = ( +"aoq" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -6060,7 +6043,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"aoQ" = ( +"aor" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; frequency = 1213; @@ -6073,7 +6056,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoR" = ( +"aos" = ( /obj/item/weapon/screwdriver, /obj/effect/spawner/newbomb/timer/syndicate, /obj/structure/table/steel, @@ -6081,7 +6064,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoS" = ( +"aot" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -6102,14 +6085,14 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"aoT" = ( +"aou" = ( /obj/structure/table/rack, /obj/item/weapon/rig/merc/empty, /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership) -"aoU" = ( +"aov" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -6127,7 +6110,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"aoV" = ( +"aow" = ( /obj/machinery/bodyscanner{ dir = 8; icon_state = "body_scanner_0" @@ -6136,7 +6119,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aoW" = ( +"aox" = ( /obj/machinery/body_scanconsole{ icon_state = "body_scannerconsole"; dir = 8 @@ -6145,7 +6128,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aoX" = ( +"aoy" = ( /obj/machinery/door/window{ dir = 4; name = "Infirmary"; @@ -6155,7 +6138,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aoY" = ( +"aoz" = ( /obj/machinery/door/window/westright{ name = "Tool Storage"; req_access = list(150) @@ -6164,20 +6147,20 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"aoZ" = ( +"aoA" = ( /obj/item/weapon/stool/padded, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"apa" = ( +"aoB" = ( /obj/effect/spawner/newbomb/timer/syndicate, /obj/structure/table/steel, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"apb" = ( +"aoC" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -6195,7 +6178,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"apc" = ( +"aoD" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -6214,7 +6197,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"apd" = ( +"aoE" = ( /obj/machinery/door/window{ base_state = "right"; dir = 4; @@ -6226,7 +6209,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"ape" = ( +"aoF" = ( /obj/machinery/door/window{ dir = 8; name = "Tool Storage"; @@ -6236,7 +6219,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apf" = ( +"aoG" = ( /obj/item/weapon/aicard, /obj/effect/spawner/newbomb/timer/syndicate, /obj/structure/table/steel, @@ -6244,7 +6227,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apg" = ( +"aoH" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -6263,7 +6246,7 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"aph" = ( +"aoI" = ( /obj/machinery/button/remote/blast_door{ id = "syndieshutters_infirmary"; name = "remote shutter control"; @@ -6274,7 +6257,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"api" = ( +"aoJ" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; frequency = 1213; @@ -6290,7 +6273,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apj" = ( +"aoK" = ( /obj/machinery/door/window{ dir = 1; name = "Secure Storage"; @@ -6300,7 +6283,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apk" = ( +"aoL" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/utility/full, /obj/item/device/multitool, @@ -6313,7 +6296,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apl" = ( +"aoM" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/utility/full, /obj/item/device/multitool, @@ -6321,7 +6304,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apm" = ( +"aoN" = ( /obj/machinery/button/remote/blast_door{ id = "syndieshutters_telebay"; name = "remote shutter control"; @@ -6333,7 +6316,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apn" = ( +"aoO" = ( /obj/machinery/button/remote/blast_door{ id = "syndieshutters_workshop"; name = "remote shutter control"; @@ -6343,7 +6326,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apo" = ( +"aoP" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -6354,7 +6337,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"app" = ( +"aoQ" = ( /obj/machinery/door/window{ dir = 1; name = "Surgery"; @@ -6364,7 +6347,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apq" = ( +"aoR" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -6373,7 +6356,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apr" = ( +"aoS" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ dir = 8 @@ -6389,7 +6372,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"aps" = ( +"aoT" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 3; @@ -6402,7 +6385,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apt" = ( +"aoU" = ( /obj/item/weapon/weldingtool, /obj/machinery/light{ dir = 8; @@ -6413,7 +6396,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apu" = ( +"aoV" = ( /obj/structure/sign/securearea{ name = "\improper CAUTION"; pixel_x = 32 @@ -6425,7 +6408,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apv" = ( +"aoW" = ( /obj/machinery/telecomms/allinone{ intercept = 1 }, @@ -6437,7 +6420,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apw" = ( +"aoX" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "syndieshutters_telebay"; @@ -6445,10 +6428,10 @@ }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"apx" = ( +"aoY" = ( /turf/simulated/wall, /area/merchant_station) -"apy" = ( +"aoZ" = ( /obj/structure/table/standard, /obj/item/weapon/scalpel, /obj/item/weapon/circular_saw{ @@ -6461,7 +6444,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apz" = ( +"apa" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -6484,7 +6467,7 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apA" = ( +"apb" = ( /obj/effect/landmark{ name = "Nuclear-Bomb" }, @@ -6492,13 +6475,13 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apB" = ( +"apc" = ( /obj/item/weapon/crowbar, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"apC" = ( +"apd" = ( /obj/machinery/light/small{ dir = 8 }, @@ -6506,7 +6489,7 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apD" = ( +"ape" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32 }, @@ -6514,12 +6497,12 @@ icon_state = "floor6" }, /area/syndicate_station/start) -"apE" = ( +"apf" = ( /obj/structure/closet/crate/loot, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_station) -"apF" = ( +"apg" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; hacked = 1; @@ -6527,24 +6510,24 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"apG" = ( +"aph" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/electrical, /obj/item/weapon/storage/toolbox/mechanical, /obj/item/weapon/storage/belt/utility, /turf/simulated/floor/tiled, /area/merchant_station) -"apH" = ( +"api" = ( /obj/structure/cryofeed, /turf/simulated/floor/tiled, /area/merchant_station) -"apI" = ( +"apj" = ( /obj/machinery/cryopod{ dir = 4 }, /turf/simulated/floor/tiled, /area/merchant_station) -"apJ" = ( +"apk" = ( /obj/machinery/computer/cryopod{ pixel_y = 32 }, @@ -6553,14 +6536,14 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"apK" = ( +"apl" = ( /obj/machinery/sleeper{ icon_state = "sleeper_0"; dir = 8 }, /turf/simulated/floor/tiled, /area/merchant_station) -"apL" = ( +"apm" = ( /obj/structure/table/standard, /obj/item/weapon/cautery, /obj/item/weapon/hemostat, @@ -6569,13 +6552,13 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apM" = ( +"apn" = ( /obj/machinery/optable, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/syndicate_station/start) -"apN" = ( +"apo" = ( /obj/structure/table/standard, /obj/item/stack/medical/advanced/bruise_pack, /obj/item/weapon/retractor, @@ -6591,59 +6574,59 @@ icon_state = "floor3" }, /area/syndicate_station/start) -"apO" = ( +"app" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/shuttle/plating, /area/syndicate_station/start) -"apP" = ( +"apq" = ( /obj/machinery/teleport/station, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"apQ" = ( +"apr" = ( /obj/machinery/teleport/hub, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/syndicate_station/start) -"apR" = ( +"aps" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled, /area/merchant_station) -"apS" = ( +"apt" = ( /turf/simulated/floor/tiled, /area/merchant_station) -"apT" = ( +"apu" = ( /obj/structure/closet/wardrobe/suit, /obj/random/backpack, /obj/random/colored_jumpsuit, /turf/simulated/floor/wood, /area/merchant_station) -"apU" = ( +"apv" = ( /obj/structure/mirror/merchant{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/merchant_station) -"apV" = ( +"apw" = ( /obj/machinery/vending/wallmed1{ pixel_y = 32 }, /turf/simulated/floor/wood, /area/merchant_station) -"apW" = ( +"apx" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/brown, /obj/structure/curtain/open/bed, /turf/simulated/floor/wood, /area/merchant_station) -"apX" = ( +"apy" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/firstaid/fire, /obj/item/weapon/storage/firstaid/o2, @@ -6651,29 +6634,29 @@ /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled, /area/merchant_station) -"apY" = ( +"apz" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l" }, /turf/template_noop, /area/syndicate_station/start) -"apZ" = ( +"apA" = ( /obj/structure/shuttle/engine/propulsion, /turf/template_noop, /area/syndicate_station/start) -"aqa" = ( +"apB" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_r" }, /turf/template_noop, /area/syndicate_station/start) -"aqb" = ( +"apC" = ( /obj/machinery/suit_cycler{ req_access = list(110) }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqc" = ( +"apD" = ( /obj/structure/table/rack, /obj/item/stack/material/steel{ amount = 50 @@ -6683,24 +6666,24 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqd" = ( +"apE" = ( /obj/structure/table/rack, /obj/random/voidsuit, /turf/simulated/floor/tiled, /area/merchant_station) -"aqe" = ( +"apF" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/item/weapon/tank/air, /obj/item/weapon/tank/air, /turf/simulated/floor/tiled, /area/merchant_station) -"aqf" = ( +"apG" = ( /obj/structure/table/wood, /obj/item/weapon/storage/fancy/cigar, /obj/item/weapon/flame/lighter/zippo, /turf/simulated/floor/wood, /area/merchant_station) -"aqg" = ( +"apH" = ( /obj/machinery/light/small{ brightness_color = "#DA0205"; brightness_power = 1; @@ -6708,16 +6691,16 @@ }, /turf/simulated/floor/wood, /area/merchant_station) -"aqh" = ( +"apI" = ( /turf/simulated/floor/wood, /area/merchant_station) -"aqi" = ( +"apJ" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /obj/random/plushie, /turf/simulated/floor/wood, /area/merchant_station) -"aqj" = ( +"apK" = ( /obj/machinery/door/airlock/glass{ hashatch = 0; name = "Cryo Storage"; @@ -6725,7 +6708,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqm" = ( +"apL" = ( /obj/effect/floor_decal/industrial/loading, /obj/machinery/door/airlock/hatch{ name = "Warehouse"; @@ -6733,17 +6716,17 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqn" = ( +"apM" = ( /obj/machinery/door/airlock/hatch{ name = "Dormitories" }, /turf/simulated/floor/wood, /area/merchant_station) -"aqo" = ( +"apN" = ( /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, /area/merchant_station) -"aqp" = ( +"apO" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, @@ -6752,7 +6735,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqq" = ( +"apP" = ( /obj/structure/noticeboard{ pixel_x = 0; pixel_y = 32 @@ -6762,7 +6745,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqr" = ( +"apQ" = ( /obj/structure/closet/secure_closet/merchant, /obj/structure/sign/poster{ pixel_x = 0; @@ -6771,38 +6754,38 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqs" = ( +"apR" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqt" = ( +"apS" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, /area/merchant_station) -"aqu" = ( +"apT" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/merchant_station) -"aqw" = ( +"apU" = ( /turf/unsimulated/wall/riveted, /area/centcom) -"aqx" = ( +"apV" = ( /turf/unsimulated/wall/fakepdoor{ dir = 4; name = "shuttle bay blast door" }, /area/centcom) -"aqy" = ( +"apW" = ( /turf/unsimulated/wall/riveted, /area/centcom/living) -"aqz" = ( +"apX" = ( /obj/machinery/merchant_pad, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_station) -"aqA" = ( +"apY" = ( /obj/machinery/door/airlock/glass{ hashatch = 0; name = "Operations Office"; @@ -6810,7 +6793,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqB" = ( +"apZ" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 8 @@ -6825,7 +6808,7 @@ }, /turf/simulated/floor/carpet, /area/merchant_station) -"aqC" = ( +"aqa" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark{ name = "LateJoinMerchant" @@ -6839,7 +6822,7 @@ }, /turf/simulated/floor/carpet, /area/merchant_station) -"aqD" = ( +"aqb" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -6853,7 +6836,7 @@ /obj/item/weapon/gun/energy/pistol, /turf/simulated/floor/carpet, /area/merchant_station) -"aqE" = ( +"aqc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -6867,68 +6850,68 @@ }, /turf/simulated/shuttle/plating, /area/merchant_station) -"aqF" = ( +"aqd" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 1 }, /area/centcom) -"aqG" = ( +"aqe" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 9 }, /area/centcom/living) -"aqH" = ( +"aqf" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 1 }, /area/centcom/living) -"aqI" = ( +"aqg" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 5 }, /area/centcom/living) -"aqJ" = ( +"aqh" = ( /obj/item/modular_computer/console/preset/merchant, /turf/simulated/floor/tiled, /area/merchant_station) -"aqK" = ( +"aqi" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/tiled, /area/merchant_station) -"aqL" = ( +"aqj" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqM" = ( +"aqk" = ( /obj/structure/table/wood, /obj/item/weapon/material/ashtray/bronze, /turf/simulated/floor/tiled, /area/merchant_station) -"aqN" = ( +"aql" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/tiled, /area/merchant_station) -"aqO" = ( +"aqm" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/merchant_station) -"aqP" = ( +"aqn" = ( /obj/structure/coatrack, /turf/simulated/floor/tiled, /area/merchant_station) -"aqQ" = ( +"aqo" = ( /obj/machinery/computer/shuttle_control/merchant, /turf/simulated/floor/tiled, /area/merchant_station) -"aqR" = ( +"aqp" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin, /obj/item/weapon/pen/multi, @@ -6943,13 +6926,13 @@ }, /turf/simulated/floor/carpet, /area/merchant_station) -"aqS" = ( +"aqq" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/effect/floor_decal/carpet, /turf/simulated/floor/carpet, /area/merchant_station) -"aqT" = ( +"aqr" = ( /obj/structure/table/reinforced, /obj/item/device/flashlight/lamp, /obj/effect/floor_decal/carpet{ @@ -6963,7 +6946,7 @@ }, /turf/simulated/floor/carpet, /area/merchant_station) -"aqU" = ( +"aqs" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -6974,15 +6957,15 @@ }, /turf/template_noop, /area/merchant_station) -"aqV" = ( +"aqt" = ( /turf/unsimulated/floor{ name = "plating" }, /area/centcom) -"aqW" = ( +"aqu" = ( /turf/unsimulated/floor, /area/centcom/living) -"aqX" = ( +"aqv" = ( /obj/structure/table/reinforced, /obj/item/weapon/spacecash/c1000, /obj/item/weapon/spacecash/c1000, @@ -6990,7 +6973,7 @@ /obj/item/weapon/spacecash/c1000, /turf/simulated/floor/tiled, /area/merchant_station) -"aqY" = ( +"aqw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -7001,7 +6984,7 @@ }, /turf/simulated/shuttle/plating, /area/merchant_station) -"aqZ" = ( +"aqx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -7009,7 +6992,7 @@ /obj/structure/window/reinforced, /turf/simulated/shuttle/plating, /area/merchant_station) -"ara" = ( +"aqy" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7021,7 +7004,7 @@ }, /turf/simulated/shuttle/plating, /area/merchant_station) -"arb" = ( +"aqz" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7032,7 +7015,7 @@ }, /turf/simulated/shuttle/plating, /area/merchant_station) -"arc" = ( +"aqA" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7041,54 +7024,54 @@ }, /turf/simulated/shuttle/plating, /area/merchant_station) -"ard" = ( +"aqB" = ( /turf/simulated/shuttle/plating, /turf/simulated/shuttle/wall/dark{ dir = 8; icon_state = "diagonalWall3" }, /area/shuttle/administration/centcom) -"are" = ( +"aqC" = ( /obj/effect/wingrille_spawn/reinforced, /turf/simulated/shuttle/plating, /area/shuttle/administration/centcom) -"arf" = ( +"aqD" = ( /turf/simulated/shuttle/plating, /turf/simulated/shuttle/wall/dark{ dir = 6; icon_state = "diagonalWall3" }, /area/shuttle/administration/centcom) -"arg" = ( +"aqE" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 }, /turf/unsimulated/floor, /area/centcom/living) -"arh" = ( +"aqF" = ( /obj/machinery/light{ dir = 4; status = 0 }, /turf/unsimulated/floor, /area/centcom/living) -"ari" = ( +"aqG" = ( /turf/simulated/shuttle/wall/dark, /area/shuttle/administration/centcom) -"arj" = ( +"aqH" = ( /obj/machinery/computer/secure_data, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"ark" = ( +"aqI" = ( /obj/machinery/computer/station_alert, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arl" = ( +"aqJ" = ( /obj/machinery/computer/shuttle_control{ req_access = list(101); shuttle_tag = "Administration" @@ -7097,55 +7080,55 @@ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arm" = ( +"aqK" = ( /obj/item/modular_computer/console/preset/command, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arn" = ( +"aqL" = ( /obj/machinery/computer/med_data, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"aro" = ( +"aqM" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 10 }, /area/centcom/living) -"arp" = ( +"aqN" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 6 }, /area/centcom/living) -"arq" = ( +"aqO" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 }, /turf/simulated/floor/tiled, /area/merchant_station) -"arr" = ( +"aqP" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/merchant_station) -"ars" = ( +"aqQ" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l"; dir = 8 }, /turf/template_noop, /area/merchant_ship/start) -"art" = ( +"aqR" = ( /turf/simulated/shuttle/wall, /area/merchant_ship/start) -"aru" = ( +"aqS" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire, /obj/item/weapon/extinguisher, @@ -7153,7 +7136,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arv" = ( +"aqT" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -7161,12 +7144,12 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arw" = ( +"aqU" = ( /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arx" = ( +"aqV" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, @@ -7174,7 +7157,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"ary" = ( +"aqW" = ( /obj/machinery/status_display{ pixel_y = 30 }, @@ -7184,17 +7167,17 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arz" = ( +"aqX" = ( /turf/unsimulated/floor{ icon_state = "warnplate" }, /area/centcom/living) -"arA" = ( +"aqY" = ( /obj/structure/window/shuttle, /obj/structure/grille, /turf/simulated/shuttle/plating, /area/merchant_ship/start) -"arB" = ( +"aqZ" = ( /obj/machinery/light, /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -7208,7 +7191,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arC" = ( +"ara" = ( /obj/machinery/turretid{ pixel_x = 28; pixel_y = -28; @@ -7218,13 +7201,13 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arD" = ( +"arb" = ( /obj/machinery/light, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arE" = ( +"arc" = ( /obj/machinery/door/airlock/centcom{ icon_state = "door_locked"; locked = 1; @@ -7234,7 +7217,7 @@ icon_state = "floor" }, /area/centcom/living) -"arF" = ( +"ard" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "merchant_station"; @@ -7244,7 +7227,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"arG" = ( +"are" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -7259,11 +7242,11 @@ }, /turf/simulated/shuttle/plating, /area/merchant_station) -"arH" = ( +"arf" = ( /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"arI" = ( +"arg" = ( /obj/structure/table/rack, /obj/structure/window/reinforced{ dir = 8 @@ -7275,7 +7258,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"arJ" = ( +"arh" = ( /obj/structure/table/rack, /obj/structure/window/reinforced{ dir = 4 @@ -7287,7 +7270,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"arK" = ( +"ari" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ dir = 8 @@ -7306,7 +7289,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"arL" = ( +"arj" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -7322,7 +7305,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"arM" = ( +"ark" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ dir = 4 @@ -7340,7 +7323,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"arN" = ( +"arl" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -7350,7 +7333,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arO" = ( +"arm" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -7358,25 +7341,25 @@ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arP" = ( +"arn" = ( /obj/machinery/computer/security, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arQ" = ( +"aro" = ( /obj/structure/AIcore/deactivated, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arR" = ( +"arp" = ( /obj/machinery/computer/crew, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arS" = ( +"arq" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -7384,7 +7367,7 @@ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"arT" = ( +"arr" = ( /obj/machinery/light{ dir = 4 }, @@ -7392,33 +7375,33 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"arU" = ( +"ars" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/living) -"arV" = ( +"art" = ( /obj/structure/banner, /turf/unsimulated/floor{ icon_state = "blue"; dir = 4 }, /area/centcom/living) -"arW" = ( +"aru" = ( /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/living) -"arX" = ( +"arv" = ( /obj/structure/banner, /turf/unsimulated/floor{ icon_state = "blue"; dir = 8 }, /area/centcom/living) -"arY" = ( +"arw" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -7430,37 +7413,37 @@ }, /turf/simulated/shuttle/plating, /area/merchant_station) -"arZ" = ( +"arx" = ( /obj/structure/lattice, /obj/structure/window/reinforced, /turf/template_noop, /area/template_noop) -"asa" = ( +"ary" = ( /obj/structure/sign/vacuum{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/merchant_ship/start) -"asb" = ( +"arz" = ( /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asc" = ( +"arA" = ( /obj/machinery/door/window/westleft{ req_access = list(110) }, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asd" = ( +"arB" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"ase" = ( +"arC" = ( /obj/structure/closet/secure_closet/merchant, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asf" = ( +"arD" = ( /obj/machinery/vending/wallmed1{ pixel_y = 32 }, @@ -7473,7 +7456,7 @@ }, /turf/simulated/floor/wood, /area/merchant_ship/start) -"asg" = ( +"arE" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 1 @@ -7494,7 +7477,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/carpet, /area/merchant_ship/start) -"ash" = ( +"arF" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 1 @@ -7519,7 +7502,7 @@ }, /turf/simulated/floor/carpet, /area/merchant_ship/start) -"asi" = ( +"arG" = ( /obj/machinery/door/airlock/centcom{ name = "Administration Shuttle Cockpit" }, @@ -7527,7 +7510,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"asj" = ( +"arH" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -7538,24 +7521,24 @@ dir = 1 }, /area/centcom/living) -"ask" = ( +"arI" = ( /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/living) -"asl" = ( +"arJ" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 4 }, /area/centcom/living) -"asm" = ( +"arK" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 8 }, /area/centcom/living) -"asn" = ( +"arL" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -7569,7 +7552,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"aso" = ( +"arM" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -7579,7 +7562,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_station) -"asp" = ( +"arN" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -7589,10 +7572,10 @@ }, /turf/simulated/shuttle/plating, /area/merchant_ship/start) -"asq" = ( +"arO" = ( /turf/simulated/floor/plating, /area/merchant_ship/start) -"asr" = ( +"arP" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -7602,12 +7585,12 @@ }, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"ass" = ( +"arQ" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"ast" = ( +"arR" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -7616,11 +7599,11 @@ /obj/item/weapon/pen/multi, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asu" = ( +"arS" = ( /obj/effect/floor_decal/plaque, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asv" = ( +"arT" = ( /obj/machinery/door/airlock/silver{ hashatch = 0; name = "Bridge"; @@ -7628,10 +7611,10 @@ }, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asw" = ( +"arU" = ( /turf/simulated/floor/wood, /area/merchant_ship/start) -"asx" = ( +"arV" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 8 @@ -7641,7 +7624,7 @@ }, /turf/simulated/floor/carpet, /area/merchant_ship/start) -"asy" = ( +"arW" = ( /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; dir = 4 @@ -7649,7 +7632,7 @@ /obj/machinery/computer/shuttle_control/merchant, /turf/simulated/floor/carpet, /area/merchant_ship/start) -"asz" = ( +"arX" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -7657,13 +7640,13 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"asA" = ( +"arY" = ( /obj/machinery/mech_recharger, /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/shuttle/administration/centcom) -"asB" = ( +"arZ" = ( /obj/mecha/combat/marauder, /obj/machinery/light{ dir = 1 @@ -7672,7 +7655,7 @@ icon_state = "floor7" }, /area/shuttle/administration/centcom) -"asC" = ( +"asa" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -7680,24 +7663,24 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"asD" = ( +"asb" = ( /turf/unsimulated/floor{ icon_state = "blue" }, /area/centcom/living) -"asE" = ( +"asc" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 6 }, /area/centcom/living) -"asF" = ( +"asd" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 10 }, /area/centcom/living) -"asG" = ( +"ase" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; direction = 2; @@ -7722,7 +7705,7 @@ }, /turf/template_noop, /area/template_noop) -"asH" = ( +"asf" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -7730,11 +7713,11 @@ }, /turf/template_noop, /area/template_noop) -"asI" = ( +"asg" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/merchant_ship/start) -"asJ" = ( +"ash" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ req_access = list(110) @@ -7742,17 +7725,17 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asK" = ( +"asi" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asL" = ( +"asj" = ( /obj/structure/closet/secure_closet/merchant, /turf/simulated/floor/wood, /area/merchant_ship/start) -"asM" = ( +"ask" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -7769,7 +7752,7 @@ }, /turf/simulated/floor/carpet, /area/merchant_ship/start) -"asO" = ( +"asl" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/sniperrifle, /obj/item/weapon/gun/energy/rifle/pulse, @@ -7777,12 +7760,12 @@ icon_state = "floor7" }, /area/shuttle/administration/centcom) -"asP" = ( +"asm" = ( /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/shuttle/administration/centcom) -"asQ" = ( +"asn" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Heavy Asset Protection"; req_access = list(103) @@ -7803,27 +7786,27 @@ icon_state = "floor7" }, /area/shuttle/administration/centcom) -"asR" = ( +"aso" = ( /obj/machinery/door/airlock/centcom{ name = "To: NMSS Odin Hab Complex" }, /turf/unsimulated/floor, /area/centcom/living) -"asS" = ( +"asp" = ( /obj/machinery/door/airlock/centcom{ name = "To: Departures Deck" }, /turf/unsimulated/floor, /area/centcom/living) -"asT" = ( +"asq" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor, /area/centcom/living) -"asU" = ( +"asr" = ( /obj/machinery/light, /turf/simulated/floor/tiled, /area/merchant_station) -"asV" = ( +"ass" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -7835,12 +7818,12 @@ /obj/structure/window/reinforced, /turf/simulated/shuttle/plating, /area/merchant_station) -"asW" = ( +"ast" = ( /obj/machinery/light, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asX" = ( +"asu" = ( /obj/structure/table/rack, /obj/structure/window/reinforced{ dir = 8 @@ -7853,7 +7836,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asY" = ( +"asv" = ( /obj/structure/table/rack, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -7866,7 +7849,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"asZ" = ( +"asw" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -7880,7 +7863,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"ata" = ( +"asx" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -7896,7 +7879,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"atb" = ( +"asy" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -7909,7 +7892,7 @@ }, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"atc" = ( +"asz" = ( /obj/structure/table/rack, /obj/structure/window/reinforced{ dir = 4 @@ -7921,7 +7904,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/merchant_ship/start) -"atd" = ( +"asA" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/ionrifle, /obj/item/weapon/gun/energy/rifle/pulse, @@ -7929,45 +7912,45 @@ icon_state = "floor7" }, /area/shuttle/administration/centcom) -"ate" = ( +"asB" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 1 }, /area/centcom/living) -"atf" = ( +"asC" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 5 }, /area/centcom/living) -"atg" = ( +"asD" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 9 }, /area/centcom/living) -"ath" = ( +"asE" = ( /obj/structure/filingcabinet, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/centcom/living) -"ati" = ( +"asF" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/centcom/living) -"atj" = ( +"asG" = ( /obj/structure/shuttle/engine/propulsion{ dir = 8; icon_state = "propulsion_r" }, /turf/template_noop, /area/merchant_ship/start) -"atk" = ( +"asH" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire, /obj/item/weapon/storage/firstaid/regular{ @@ -7980,7 +7963,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"atl" = ( +"asI" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "heavyass"; @@ -7991,13 +7974,13 @@ icon_state = "floor7" }, /area/shuttle/administration/centcom) -"atm" = ( +"asJ" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "warnplate" }, /area/centcom/living) -"atn" = ( +"asK" = ( /obj/structure/table/wood, /obj/item/device/radio/phone, /obj/machinery/light/small{ @@ -8008,14 +7991,14 @@ icon_state = "carpetside" }, /area/centcom/living) -"ato" = ( +"asL" = ( /obj/structure/bed/chair, /turf/unsimulated/floor{ dir = 1; icon_state = "carpetside" }, /area/centcom/living) -"atp" = ( +"asM" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -8027,7 +8010,7 @@ icon_state = "carpetside" }, /area/centcom/living) -"atq" = ( +"asN" = ( /obj/machinery/light/small{ dir = 4 }, @@ -8036,7 +8019,7 @@ icon_state = "wood" }, /area/centcom/living) -"atr" = ( +"asO" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -8047,7 +8030,7 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/administration/centcom) -"ats" = ( +"asP" = ( /obj/machinery/status_display{ pixel_y = 30 }, @@ -8058,7 +8041,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"att" = ( +"asQ" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -8067,7 +8050,7 @@ icon_state = "floor" }, /area/centcom/living) -"atu" = ( +"asR" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -8076,7 +8059,7 @@ icon_state = "floor" }, /area/centcom/living) -"atv" = ( +"asS" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /turf/unsimulated/floor{ @@ -8084,24 +8067,24 @@ icon_state = "carpetside" }, /area/centcom/living) -"atw" = ( +"asT" = ( /obj/structure/table/wood, /turf/unsimulated/floor{ dir = 2; icon_state = "carpetside" }, /area/centcom/living) -"atx" = ( +"asU" = ( /obj/structure/table/wood, /turf/unsimulated/floor{ dir = 6; icon_state = "carpetside" }, /area/centcom/living) -"aty" = ( +"asV" = ( /turf/unsimulated/wall/riveted, /area/centcom/suppy) -"atz" = ( +"asW" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -8116,7 +8099,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"atA" = ( +"asX" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = 28 }, @@ -8127,13 +8110,13 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"atB" = ( +"asY" = ( /obj/structure/bed/chair/comfy/red, /turf/unsimulated/floor{ icon_state = "bluefull" }, /area/centcom/living) -"atC" = ( +"asZ" = ( /obj/structure/bed/chair/comfy/blue, /obj/machinery/light{ dir = 1; @@ -8144,25 +8127,25 @@ icon_state = "redfull" }, /area/centcom/living) -"atD" = ( +"ata" = ( /obj/structure/bed/chair/comfy/blue, /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/living) -"atE" = ( +"atb" = ( /obj/machinery/vending/snack, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/living) -"atF" = ( +"atc" = ( /obj/machinery/vending/cola, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/living) -"atG" = ( +"atd" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -8171,18 +8154,18 @@ icon_state = "wood" }, /area/centcom/living) -"atH" = ( +"ate" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 8 }, /area/centcom/suppy) -"atI" = ( +"atf" = ( /turf/unsimulated/floor{ name = "plating" }, /area/centcom/suppy) -"atJ" = ( +"atg" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 1 @@ -8191,25 +8174,25 @@ name = "plating" }, /area/centcom/suppy) -"atK" = ( +"ath" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 4 }, /area/centcom/suppy) -"atL" = ( +"ati" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; name = "shuttle bay blast door" }, /area/centcom/suppy) -"atM" = ( +"atj" = ( /obj/item/weapon/stool, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"atN" = ( +"atk" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 4 @@ -8218,25 +8201,25 @@ icon_state = "redfull" }, /area/centcom/living) -"atO" = ( +"atl" = ( /turf/unsimulated/floor{ icon_state = "bluered"; dir = 9 }, /area/centcom/living) -"atP" = ( +"atm" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 1 }, /area/centcom/living) -"atQ" = ( +"atn" = ( /turf/unsimulated/floor{ icon_state = "redblue"; dir = 5 }, /area/centcom/living) -"atR" = ( +"ato" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 8 @@ -8245,7 +8228,7 @@ icon_state = "redfull" }, /area/centcom/living) -"atS" = ( +"atp" = ( /obj/machinery/door/airlock/centcom{ name = "Interview Room"; opacity = 1 @@ -8255,37 +8238,37 @@ dir = 2 }, /area/centcom/living) -"atT" = ( +"atq" = ( /turf/simulated/shuttle/wall, /area/supply/dock) -"atU" = ( +"atr" = ( /obj/machinery/porta_turret/stationary, /obj/effect/decal/warning_stripes, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"atV" = ( +"ats" = ( /obj/structure/table/standard, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"atW" = ( +"att" = ( /obj/structure/table/standard, /obj/item/weapon/flame/lighter/zippo, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"atX" = ( +"atu" = ( /obj/structure/table/standard, /obj/item/weapon/storage/fancy/cigarettes, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"atY" = ( +"atv" = ( /obj/structure/bed/chair/comfy/red{ dir = 4 }, @@ -8293,24 +8276,24 @@ icon_state = "bluefull" }, /area/centcom/living) -"atZ" = ( +"atw" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/centcom/living) -"aua" = ( +"atx" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 4 }, /area/centcom/living) -"aub" = ( +"aty" = ( /turf/unsimulated/floor{ icon_state = "bluefull" }, /area/centcom/living) -"auc" = ( +"atz" = ( /obj/machinery/door/airlock/centcom{ name = "NMSS Odin CCIA Administration"; opacity = 1 @@ -8319,7 +8302,7 @@ icon_state = "floor" }, /area/centcom/living) -"aud" = ( +"atA" = ( /obj/machinery/light/small{ dir = 1 }, @@ -8327,7 +8310,7 @@ icon_state = "floor" }, /area/centcom/living) -"aue" = ( +"atB" = ( /obj/machinery/door/airlock/centcom{ icon_state = "door_locked"; locked = 1; @@ -8335,40 +8318,40 @@ }, /turf/unsimulated/wall/riveted, /area/centcom/suppy) -"auf" = ( +"atC" = ( /turf/simulated/shuttle/floor, /area/supply/dock) -"aug" = ( +"atD" = ( /obj/machinery/light/spot, /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 4 }, /area/centcom/suppy) -"aui" = ( +"atE" = ( /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"auj" = ( +"atF" = ( /turf/unsimulated/floor{ icon_state = "bluered"; dir = 10 }, /area/centcom/living) -"auk" = ( +"atG" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/centcom/living) -"aul" = ( +"atH" = ( /turf/unsimulated/floor{ icon_state = "redblue"; dir = 6 }, /area/centcom/living) -"aum" = ( +"atI" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 8 @@ -8378,7 +8361,7 @@ dir = 8 }, /area/centcom/suppy) -"aun" = ( +"atJ" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -8386,13 +8369,13 @@ }, /turf/simulated/shuttle/floor, /area/supply/dock) -"auo" = ( +"atK" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/shuttle/floor, /area/supply/dock) -"aup" = ( +"atL" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = -28 }, @@ -8405,7 +8388,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"auq" = ( +"atM" = ( /obj/machinery/vending/snack, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8415,14 +8398,14 @@ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"aur" = ( +"atN" = ( /obj/machinery/vending/cigarette, /obj/structure/window/reinforced, /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"aus" = ( +"atO" = ( /obj/machinery/vending/boozeomat, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -8432,7 +8415,7 @@ icon_state = "floor6" }, /area/shuttle/administration/centcom) -"aut" = ( +"atP" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -8445,7 +8428,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"auu" = ( +"atQ" = ( /obj/structure/bed/chair/comfy/red{ icon_state = "comfychair_preview"; dir = 1 @@ -8454,7 +8437,7 @@ icon_state = "bluefull" }, /area/centcom/living) -"auv" = ( +"atR" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 1 @@ -8464,7 +8447,7 @@ icon_state = "redfull" }, /area/centcom/living) -"auw" = ( +"atS" = ( /obj/structure/bed/chair/comfy/blue{ icon_state = "comfychair_preview"; dir = 1 @@ -8473,14 +8456,14 @@ icon_state = "redfull" }, /area/centcom/living) -"aux" = ( +"atT" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad2" }, /turf/simulated/shuttle/floor, /area/supply/dock) -"auy" = ( +"atU" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad2" @@ -8495,7 +8478,7 @@ }, /turf/simulated/shuttle/plating, /area/supply/dock) -"auz" = ( +"atV" = ( /obj/machinery/status_display{ pixel_y = -30 }, @@ -8504,7 +8487,7 @@ icon_state = "floor4" }, /area/shuttle/administration/centcom) -"auA" = ( +"atW" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -8515,13 +8498,13 @@ }, /turf/simulated/shuttle/floor, /area/supply/dock) -"auB" = ( +"atX" = ( /obj/machinery/door/airlock/centcom, /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auC" = ( +"atY" = ( /obj/machinery/door/airlock/centcom{ name = "Administration Shuttle Infirmary" }, @@ -8529,7 +8512,7 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auD" = ( +"atZ" = ( /obj/machinery/door/airlock/centcom{ name = "Administration Shuttle Wardrobe" }, @@ -8537,7 +8520,7 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auE" = ( +"aua" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "supply_shuttle"; @@ -8548,7 +8531,7 @@ }, /turf/simulated/shuttle/floor, /area/supply/dock) -"auF" = ( +"aub" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = -28 }, @@ -8556,7 +8539,7 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auG" = ( +"auc" = ( /obj/structure/closet/hydrant{ pixel_x = 30; pixel_y = 0 @@ -8565,7 +8548,7 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auH" = ( +"aud" = ( /obj/machinery/atmospherics/unary/cryo_cell{ layer = 3.3 }, @@ -8573,31 +8556,31 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auI" = ( +"aue" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auJ" = ( +"auf" = ( /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auK" = ( +"aug" = ( /obj/machinery/chem_master, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auL" = ( +"auh" = ( /obj/machinery/chemical_dispenser/full, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auM" = ( +"aui" = ( /obj/structure/closet/hydrant{ pixel_x = -30; pixel_y = 0 @@ -8606,7 +8589,7 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auN" = ( +"auj" = ( /obj/structure/closet/wardrobe{ name = "Captain's Wardrobe" }, @@ -8625,13 +8608,13 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auO" = ( +"auk" = ( /obj/structure/closet/crate/freezer/rations, /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auP" = ( +"aul" = ( /obj/structure/closet/crate/freezer/rations, /obj/machinery/light{ dir = 4 @@ -8640,7 +8623,7 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auQ" = ( +"aum" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -8654,7 +8637,7 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auR" = ( +"aun" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 @@ -8663,7 +8646,7 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auS" = ( +"auo" = ( /obj/item/weapon/cautery{ pixel_y = 4 }, @@ -8691,7 +8674,7 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"auT" = ( +"aup" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -8701,7 +8684,7 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auU" = ( +"auq" = ( /obj/structure/closet/wardrobe{ name = "Officer's Wardrobe" }, @@ -8720,21 +8703,21 @@ icon_state = "floor2" }, /area/shuttle/administration/centcom) -"auV" = ( +"aur" = ( /obj/machinery/door/airlock/centcom{ name = "To: NSS Exodus Processing"; opacity = 1 }, /turf/unsimulated/floor, /area/centcom/living) -"auW" = ( +"aus" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/living) -"auX" = ( +"aut" = ( /obj/machinery/door/airlock/centcom{ name = "To: NSS Aurora Processing" }, @@ -8744,14 +8727,14 @@ }, /turf/unsimulated/floor, /area/centcom/living) -"auY" = ( +"auu" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/simulated/shuttle/floor, /area/supply/dock) -"auZ" = ( +"auv" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" @@ -8766,14 +8749,14 @@ }, /turf/simulated/shuttle/plating, /area/supply/dock) -"ava" = ( +"auw" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/administration/centcom) -"avb" = ( +"aux" = ( /obj/machinery/iv_drip, /obj/machinery/light{ dir = 8; @@ -8784,7 +8767,7 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"avc" = ( +"auy" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -8800,19 +8783,19 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"avd" = ( +"auz" = ( /turf/simulated/shuttle/plating, /turf/simulated/shuttle/wall/dark{ icon_state = "diagonalWall3" }, /area/shuttle/administration/centcom) -"ave" = ( +"auA" = ( /obj/structure/shuttle/engine/propulsion, /turf/unsimulated/floor{ name = "plating" }, /area/shuttle/administration/centcom) -"avf" = ( +"auB" = ( /obj/machinery/sleeper{ dir = 4 }, @@ -8820,7 +8803,7 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"avg" = ( +"auC" = ( /obj/structure/closet/crate/medical, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -2; @@ -8867,20 +8850,20 @@ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"avh" = ( +"auD" = ( /obj/machinery/computer/operating, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/administration/centcom) -"avi" = ( +"auE" = ( /turf/simulated/shuttle/plating, /turf/simulated/shuttle/wall/dark{ dir = 4; icon_state = "diagonalWall3" }, /area/shuttle/administration/centcom) -"avj" = ( +"auF" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 8 @@ -8889,7 +8872,7 @@ name = "plating" }, /area/centcom/suppy) -"avk" = ( +"auG" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 1 @@ -8899,14 +8882,14 @@ dir = 4 }, /area/centcom/suppy) -"avl" = ( +"auH" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/shuttle/engine/heater, /turf/simulated/shuttle/plating, /area/shuttle/administration/centcom) -"avm" = ( +"auI" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "admin_shuttle_bay"; @@ -8919,12 +8902,12 @@ name = "plating" }, /area/centcom) -"avn" = ( +"auJ" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom) -"avo" = ( +"auK" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -8935,14 +8918,14 @@ }, /turf/simulated/shuttle/plating, /area/supply/dock) -"avp" = ( +"auL" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/shuttle/engine/heater, /turf/simulated/shuttle/plating, /area/supply/dock) -"avq" = ( +"auM" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -8952,13 +8935,13 @@ }, /turf/simulated/shuttle/plating, /area/supply/dock) -"avr" = ( +"auN" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 4 }, /area/centcom) -"avs" = ( +"auO" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -8969,7 +8952,7 @@ name = "plating" }, /area/centcom) -"avt" = ( +"auP" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -8978,54 +8961,54 @@ icon_state = "dark" }, /area/centcom) -"avu" = ( +"auQ" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_l" }, /turf/template_noop, /area/supply/dock) -"avv" = ( +"auR" = ( /obj/structure/shuttle/engine/propulsion, /turf/template_noop, /area/supply/dock) -"avw" = ( +"auS" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_r" }, /turf/template_noop, /area/supply/dock) -"avx" = ( +"auT" = ( /turf/unsimulated/wall/riveted, /area/centcom/control) -"avy" = ( +"auU" = ( /obj/machinery/telecomms/receiver/preset_cent, /turf/unsimulated/floor{ icon_state = "green"; dir = 9 }, /area/centcom/control) -"avz" = ( +"auV" = ( /obj/machinery/telecomms/bus/preset_cent, /turf/unsimulated/floor{ icon_state = "green"; dir = 1 }, /area/centcom/control) -"avA" = ( +"auW" = ( /obj/machinery/telecomms/processor/preset_cent, /turf/unsimulated/floor{ icon_state = "green"; dir = 1 }, /area/centcom/control) -"avB" = ( +"auX" = ( /obj/machinery/telecomms/server/presets/centcomm, /turf/unsimulated/floor{ icon_state = "green"; dir = 1 }, /area/centcom/control) -"avC" = ( +"auY" = ( /obj/machinery/account_database{ name = "CentComm Accounts database" }, @@ -9034,53 +9017,53 @@ dir = 5 }, /area/centcom/control) -"avD" = ( +"auZ" = ( /obj/machinery/computer/teleporter, /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"avE" = ( +"ava" = ( /obj/machinery/teleport/station, /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"avF" = ( +"avb" = ( /obj/machinery/teleport/hub, /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"avG" = ( +"avc" = ( /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"avH" = ( +"avd" = ( /obj/machinery/light/spot, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/suppy) -"avI" = ( +"ave" = ( /turf/unsimulated/wall/riveted, /area/centcom/specops) -"avJ" = ( +"avf" = ( /turf/unsimulated/wall/riveted, /area/centcom/creed) -"avK" = ( +"avg" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 8 }, /area/centcom/control) -"avL" = ( +"avh" = ( /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"avM" = ( +"avi" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -9090,7 +9073,7 @@ dir = 4 }, /area/centcom/control) -"avN" = ( +"avj" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/a762, /obj/item/ammo_magazine/a762, @@ -9105,7 +9088,7 @@ dir = 1 }, /area/centcom/specops) -"avO" = ( +"avk" = ( /obj/structure/table/rack, /obj/item/weapon/plastique, /obj/item/weapon/plastique, @@ -9118,7 +9101,7 @@ dir = 1 }, /area/centcom/specops) -"avP" = ( +"avl" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/mc9mmt, /obj/item/ammo_magazine/mc9mmt, @@ -9143,7 +9126,7 @@ dir = 1 }, /area/centcom/specops) -"avQ" = ( +"avm" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/ionrifle, /turf/unsimulated/floor{ @@ -9151,7 +9134,7 @@ dir = 1 }, /area/centcom/specops) -"avR" = ( +"avn" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/rifle, /obj/item/weapon/gun/energy/rifle, @@ -9161,7 +9144,7 @@ dir = 1 }, /area/centcom/specops) -"avS" = ( +"avo" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/a556, /obj/item/ammo_magazine/a556, @@ -9176,7 +9159,7 @@ dir = 1 }, /area/centcom/specops) -"avT" = ( +"avp" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/flashbangs, /obj/item/weapon/storage/box/flashbangs, @@ -9189,7 +9172,7 @@ dir = 1 }, /area/centcom/specops) -"avU" = ( +"avq" = ( /obj/item/weapon/aiModule/nanotrasen, /obj/item/weapon/aiModule/reset, /obj/item/weapon/aiModule/freeformcore, @@ -9204,7 +9187,7 @@ dir = 1 }, /area/centcom/specops) -"avV" = ( +"avr" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "ert_synth_equipment"; @@ -9215,59 +9198,59 @@ dir = 8 }, /area/centcom/specops) -"avW" = ( +"avs" = ( /turf/unsimulated/floor{ icon_state = "vault"; dir = 8 }, /area/centcom/specops) -"avX" = ( +"avt" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/unsimulated/floor{ icon_state = "vault"; dir = 8 }, /area/centcom/specops) -"avY" = ( +"avu" = ( /obj/machinery/shield_gen, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"avZ" = ( +"avv" = ( /obj/machinery/shield_capacitor, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"awa" = ( +"avw" = ( /obj/machinery/shieldgen, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"awb" = ( +"avx" = ( /obj/machinery/shieldwallgen, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"awc" = ( +"avy" = ( /obj/machinery/telecomms/relay/preset/centcom, /turf/unsimulated/floor{ icon_state = "grimy" }, /area/centcom/creed) -"awd" = ( +"avz" = ( /turf/unsimulated/floor{ icon_state = "grimy" }, /area/centcom/creed) -"awe" = ( +"avA" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9275,7 +9258,7 @@ icon_state = "grimy" }, /area/centcom/creed) -"awf" = ( +"avB" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -9284,7 +9267,7 @@ icon_state = "dark" }, /area/centcom) -"awg" = ( +"avC" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -9294,13 +9277,13 @@ dir = 8 }, /area/centcom/control) -"awh" = ( +"avD" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/centcom/control) -"awi" = ( +"avE" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -9309,7 +9292,7 @@ icon_state = "engine" }, /area/centcom/control) -"awj" = ( +"avF" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -9318,7 +9301,7 @@ icon_state = "engine" }, /area/centcom/control) -"awk" = ( +"avG" = ( /obj/machinery/door/blast/regular{ dir = 1; icon_state = "pdoor1"; @@ -9331,7 +9314,7 @@ dir = 8 }, /area/centcom/specops) -"awl" = ( +"avH" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -9341,7 +9324,7 @@ dir = 8 }, /area/centcom/specops) -"awm" = ( +"avI" = ( /obj/structure/table/rack, /obj/item/weapon/circuitboard/borgupload, /obj/item/weapon/circuitboard/aiupload{ @@ -9356,7 +9339,7 @@ dir = 8 }, /area/centcom/specops) -"awn" = ( +"avJ" = ( /obj/structure/table/rack, /obj/item/weapon/storage/secure/briefcase, /obj/item/weapon/storage/fancy/cigarettes, @@ -9367,7 +9350,7 @@ icon_state = "grimy" }, /area/centcom/creed) -"awo" = ( +"avK" = ( /obj/structure/table/wood{ dir = 10 }, @@ -9403,25 +9386,25 @@ icon_state = "grimy" }, /area/centcom/creed) -"awp" = ( +"avL" = ( /obj/machinery/telecomms/broadcaster/preset_cent, /turf/unsimulated/floor{ icon_state = "green"; dir = 10 }, /area/centcom/control) -"awq" = ( +"avM" = ( /obj/machinery/telecomms/hub/preset_cent, /turf/unsimulated/floor{ icon_state = "green" }, /area/centcom/control) -"awr" = ( +"avN" = ( /turf/unsimulated/floor{ icon_state = "green" }, /area/centcom/control) -"aws" = ( +"avO" = ( /obj/machinery/computer/rdservercontrol{ badmin = 1; name = "Master R&D Server Controller" @@ -9430,14 +9413,14 @@ icon_state = "green" }, /area/centcom/control) -"awt" = ( +"avP" = ( /obj/machinery/r_n_d/server/centcom, /turf/unsimulated/floor{ icon_state = "green"; dir = 6 }, /area/centcom/control) -"awu" = ( +"avQ" = ( /obj/machinery/door/airlock/centcom{ name = "NMSS Odin Sub-Deck"; opacity = 1 @@ -9446,19 +9429,19 @@ icon_state = "bluefull" }, /area/centcom/living) -"awv" = ( +"avR" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/living) -"aww" = ( +"avS" = ( /obj/machinery/mech_recharger, /turf/unsimulated/floor{ icon_state = "bot" }, /area/centcom/specops) -"awx" = ( +"avT" = ( /obj/mecha/combat/gygax/dark, /obj/machinery/camera/network/ert{ c_tag = "Assault Armor North" @@ -9468,13 +9451,13 @@ dir = 6 }, /area/centcom/specops) -"awy" = ( +"avU" = ( /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"awz" = ( +"avV" = ( /obj/item/device/radio/intercom{ broadcasting = 1; dir = 1; @@ -9488,13 +9471,13 @@ dir = 1 }, /area/centcom/specops) -"awA" = ( +"avW" = ( /turf/unsimulated/floor{ icon_state = "vault"; dir = 9 }, /area/centcom/specops) -"awB" = ( +"avX" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -9507,14 +9490,14 @@ dir = 8 }, /area/centcom/specops) -"awC" = ( +"avY" = ( /obj/machinery/vending/security, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"awD" = ( +"avZ" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -9524,13 +9507,13 @@ dir = 8 }, /area/centcom/specops) -"awE" = ( +"awa" = ( /obj/structure/closet/secure_closet/hos, /turf/unsimulated/floor{ icon_state = "grimy" }, /area/centcom/creed) -"awF" = ( +"awb" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -9538,7 +9521,7 @@ icon_state = "grimy" }, /area/centcom/creed) -"awG" = ( +"awc" = ( /obj/structure/table/wood{ dir = 5 }, @@ -9546,7 +9529,7 @@ icon_state = "grimy" }, /area/centcom/creed) -"awH" = ( +"awd" = ( /obj/machinery/door/airlock/centcom{ name = "Administration Shuttle"; opacity = 1; @@ -9563,7 +9546,7 @@ icon_state = "dark" }, /area/centcom) -"awI" = ( +"awe" = ( /obj/machinery/door/airlock/centcom{ name = "Communications Control"; opacity = 1; @@ -9573,13 +9556,13 @@ icon_state = "delivery" }, /area/centcom/control) -"awJ" = ( +"awf" = ( /obj/structure/banner, /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/living) -"awK" = ( +"awg" = ( /obj/machinery/door/airlock/centcom{ name = "Teleporter Bay"; opacity = 1; @@ -9589,10 +9572,10 @@ icon_state = "delivery" }, /area/centcom/control) -"awL" = ( +"awh" = ( /turf/unsimulated/wall/riveted, /area/centcom/test) -"awM" = ( +"awi" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ @@ -9600,12 +9583,12 @@ dir = 8 }, /area/centcom/control) -"awN" = ( +"awj" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"awO" = ( +"awk" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -9614,7 +9597,7 @@ icon_state = "dark" }, /area/centcom/control) -"awP" = ( +"awl" = ( /obj/structure/artilleryplaceholder{ icon_state = "1" }, @@ -9623,7 +9606,7 @@ dir = 9 }, /area/centcom/control) -"awQ" = ( +"awm" = ( /obj/structure/artilleryplaceholder{ icon_state = "2" }, @@ -9632,7 +9615,7 @@ dir = 1 }, /area/centcom/control) -"awR" = ( +"awn" = ( /obj/structure/artilleryplaceholder{ icon_state = "3" }, @@ -9641,7 +9624,7 @@ dir = 1 }, /area/centcom/control) -"awS" = ( +"awo" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "4" }, @@ -9650,7 +9633,7 @@ dir = 1 }, /area/centcom/control) -"awT" = ( +"awp" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "5" }, @@ -9659,7 +9642,7 @@ dir = 1 }, /area/centcom/control) -"awU" = ( +"awq" = ( /obj/structure/artilleryplaceholder{ icon_state = "6" }, @@ -9668,7 +9651,7 @@ dir = 1 }, /area/centcom/control) -"awV" = ( +"awr" = ( /obj/structure/artilleryplaceholder{ icon_state = "7" }, @@ -9677,7 +9660,7 @@ dir = 1 }, /area/centcom/control) -"awW" = ( +"aws" = ( /obj/structure/artilleryplaceholder{ icon_state = "8" }, @@ -9686,7 +9669,7 @@ dir = 1 }, /area/centcom/control) -"awX" = ( +"awt" = ( /obj/structure/artilleryplaceholder{ icon_state = "9" }, @@ -9695,7 +9678,7 @@ dir = 1 }, /area/centcom/control) -"awY" = ( +"awu" = ( /obj/structure/artilleryplaceholder{ icon_state = "10" }, @@ -9704,7 +9687,7 @@ dir = 1 }, /area/centcom/control) -"awZ" = ( +"awv" = ( /obj/structure/artilleryplaceholder{ icon_state = "11" }, @@ -9717,7 +9700,7 @@ dir = 1 }, /area/centcom/control) -"axa" = ( +"aww" = ( /obj/structure/artilleryplaceholder{ icon_state = "12" }, @@ -9726,7 +9709,7 @@ dir = 5 }, /area/centcom/control) -"axb" = ( +"awx" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "battery3"; @@ -9737,7 +9720,7 @@ dir = 8 }, /area/centcom/control) -"axc" = ( +"awy" = ( /obj/effect/landmark{ name = "Marauder Exit" }, @@ -9745,12 +9728,12 @@ name = "plating" }, /area/centcom/specops) -"axd" = ( +"awz" = ( /turf/unsimulated/floor{ name = "plating" }, /area/centcom/specops) -"axe" = ( +"awA" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -9762,19 +9745,19 @@ name = "plating" }, /area/centcom/specops) -"axf" = ( +"awB" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 8 }, /area/centcom/specops) -"axg" = ( +"awC" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 4 }, /area/centcom/specops) -"axh" = ( +"awD" = ( /obj/machinery/mass_driver{ dir = 8; id = "ASSAULT3"; @@ -9784,20 +9767,20 @@ icon_state = "bot" }, /area/centcom/specops) -"axi" = ( +"awE" = ( /turf/unsimulated/floor{ icon_state = "loadingarea"; dir = 8 }, /area/centcom/specops) -"axj" = ( +"awF" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axk" = ( +"awG" = ( /obj/structure/table/reinforced, /obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, /obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, @@ -9809,7 +9792,7 @@ dir = 1 }, /area/centcom/specops) -"axl" = ( +"awH" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/pistol, /obj/item/weapon/gun/energy/pistol, @@ -9822,56 +9805,56 @@ dir = 1 }, /area/centcom/specops) -"axm" = ( +"awI" = ( /obj/machinery/vending/tacticool/ert, /turf/unsimulated/floor{ icon_state = "vault"; dir = 8 }, /area/centcom/specops) -"axn" = ( +"awJ" = ( /obj/machinery/vending/assist, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axo" = ( +"awK" = ( /obj/machinery/portable_atmospherics/canister/air, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axp" = ( +"awL" = ( /obj/machinery/pipedispenser/orderable, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axq" = ( +"awM" = ( /obj/machinery/pipedispenser/disposal/orderable, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axr" = ( +"awN" = ( /obj/machinery/power/emitter, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axs" = ( +"awO" = ( /obj/item/weapon/card/id/centcom, /obj/structure/table/rack, /turf/unsimulated/floor{ icon_state = "grimy" }, /area/centcom/creed) -"axt" = ( +"awP" = ( /obj/machinery/computer/security/telescreen{ name = "Spec. Ops. Monitor"; network = list("ERT") @@ -9883,7 +9866,7 @@ icon_state = "grimy" }, /area/centcom/creed) -"axu" = ( +"awQ" = ( /obj/machinery/computer/pod{ id = "NTrasen"; name = "Hull Door Control" @@ -9900,19 +9883,19 @@ icon_state = "grimy" }, /area/centcom/creed) -"axv" = ( +"awR" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/creed) -"axw" = ( +"awS" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"axx" = ( +"awT" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -9922,19 +9905,19 @@ icon_state = "dark" }, /area/centcom/specops) -"axy" = ( +"awU" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 9 }, /area/centcom/control) -"axz" = ( +"awV" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 1 }, /area/centcom/control) -"axA" = ( +"awW" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -9945,42 +9928,42 @@ dir = 1 }, /area/centcom/control) -"axB" = ( +"awX" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 5 }, /area/centcom/control) -"axC" = ( +"awY" = ( /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/test) -"axD" = ( +"awZ" = ( /obj/machinery/dna_scannernew, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/test) -"axE" = ( +"axa" = ( /obj/machinery/computer/scan_consolenew, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/test) -"axF" = ( +"axb" = ( /obj/machinery/computer/cloning, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/test) -"axG" = ( +"axc" = ( /obj/machinery/clonepod, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/test) -"axH" = ( +"axd" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 8 @@ -9989,7 +9972,7 @@ icon_state = "dark" }, /area/centcom/control) -"axI" = ( +"axe" = ( /obj/structure/artilleryplaceholder{ icon_state = "13" }, @@ -9998,7 +9981,7 @@ dir = 8 }, /area/centcom/control) -"axJ" = ( +"axf" = ( /obj/structure/artilleryplaceholder{ icon_state = "14" }, @@ -10007,7 +9990,7 @@ dir = 8 }, /area/centcom/control) -"axK" = ( +"axg" = ( /obj/structure/artilleryplaceholder{ icon_state = "15" }, @@ -10016,7 +9999,7 @@ dir = 8 }, /area/centcom/control) -"axL" = ( +"axh" = ( /obj/structure/artilleryplaceholder{ icon_state = "16" }, @@ -10025,7 +10008,7 @@ icon_state = "gcircuit" }, /area/centcom/control) -"axM" = ( +"axi" = ( /obj/structure/artilleryplaceholder{ icon_state = "17" }, @@ -10034,7 +10017,7 @@ icon_state = "gcircuit" }, /area/centcom/control) -"axN" = ( +"axj" = ( /obj/structure/artilleryplaceholder{ icon_state = "18" }, @@ -10043,7 +10026,7 @@ icon_state = "gcircuit" }, /area/centcom/control) -"axO" = ( +"axk" = ( /obj/structure/artilleryplaceholder{ icon_state = "19" }, @@ -10052,7 +10035,7 @@ dir = 8 }, /area/centcom/control) -"axP" = ( +"axl" = ( /obj/structure/artilleryplaceholder{ icon_state = "20" }, @@ -10061,7 +10044,7 @@ dir = 8 }, /area/centcom/control) -"axQ" = ( +"axm" = ( /obj/structure/artilleryplaceholder{ icon_state = "21" }, @@ -10070,7 +10053,7 @@ dir = 8 }, /area/centcom/control) -"axR" = ( +"axn" = ( /obj/structure/artilleryplaceholder{ icon_state = "22" }, @@ -10079,7 +10062,7 @@ dir = 8 }, /area/centcom/control) -"axS" = ( +"axo" = ( /obj/structure/artilleryplaceholder{ icon_state = "23" }, @@ -10088,7 +10071,7 @@ dir = 8 }, /area/centcom/control) -"axT" = ( +"axp" = ( /obj/structure/artilleryplaceholder{ icon_state = "24" }, @@ -10097,7 +10080,7 @@ dir = 4 }, /area/centcom/control) -"axU" = ( +"axq" = ( /obj/machinery/door/blast/regular{ dir = 1; icon_state = "pdoor1"; @@ -10110,14 +10093,14 @@ dir = 8 }, /area/centcom/specops) -"axV" = ( +"axr" = ( /obj/machinery/vending/tool, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axW" = ( +"axs" = ( /obj/structure/table/reinforced/steel, /obj/item/weapon/circuitboard/smes, /obj/item/weapon/circuitboard/smes, @@ -10126,7 +10109,7 @@ dir = 8 }, /area/centcom/specops) -"axX" = ( +"axt" = ( /obj/machinery/door/airlock/centcom{ name = "Creed's Office"; opacity = 1; @@ -10143,33 +10126,33 @@ icon_state = "dark" }, /area/centcom/creed) -"axY" = ( +"axu" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"axZ" = ( +"axv" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/centcom/control) -"aya" = ( +"axw" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"ayb" = ( +"axx" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 4 }, /area/centcom/control) -"ayc" = ( +"axy" = ( /obj/machinery/door/airlock/centcom{ name = "Research Facility"; opacity = 1; @@ -10179,7 +10162,7 @@ icon_state = "delivery" }, /area/centcom/test) -"ayd" = ( +"axz" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -10187,7 +10170,7 @@ icon_state = "white" }, /area/centcom/test) -"aye" = ( +"axA" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "25" }, @@ -10197,13 +10180,13 @@ dir = 10 }, /area/centcom/control) -"ayf" = ( +"axB" = ( /obj/structure/window/phoronreinforced, /turf/unsimulated/floor{ icon_state = "podhatch" }, /area/centcom/control) -"ayg" = ( +"axC" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "26" }, @@ -10217,7 +10200,7 @@ icon_state = "podhatch" }, /area/centcom/control) -"ayh" = ( +"axD" = ( /turf/unsimulated/floor{ icon_state = "gcircuit" }, @@ -10233,7 +10216,7 @@ icon_state = "wood_siding10" }, /area/centcom/control) -"ayi" = ( +"axE" = ( /turf/unsimulated/floor{ icon_state = "gcircuit" }, @@ -10249,7 +10232,7 @@ dir = 6 }, /area/centcom/control) -"ayj" = ( +"axF" = ( /turf/unsimulated/floor{ icon_state = "gcircuit" }, @@ -10261,7 +10244,7 @@ icon_state = "wood_siding6" }, /area/centcom/control) -"ayk" = ( +"axG" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "30" }, @@ -10273,7 +10256,7 @@ icon_state = "podhatch" }, /area/centcom/control) -"ayl" = ( +"axH" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "31" }, @@ -10281,7 +10264,7 @@ icon_state = "podhatch" }, /area/centcom/control) -"aym" = ( +"axI" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "32" }, @@ -10289,7 +10272,7 @@ icon_state = "podhatch" }, /area/centcom/control) -"ayn" = ( +"axJ" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "33" }, @@ -10297,7 +10280,7 @@ icon_state = "podhatch" }, /area/centcom/control) -"ayo" = ( +"axK" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "34" }, @@ -10305,7 +10288,7 @@ icon_state = "podhatch" }, /area/centcom/control) -"ayp" = ( +"axL" = ( /obj/structure/artilleryplaceholder/decorative{ icon_state = "35" }, @@ -10314,14 +10297,14 @@ dir = 6 }, /area/centcom/control) -"ayq" = ( +"axM" = ( /obj/mecha/medical/odysseus/loaded, /turf/unsimulated/floor{ icon_state = "delivery"; dir = 6 }, /area/centcom/specops) -"ayr" = ( +"axN" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -10332,7 +10315,7 @@ dir = 1 }, /area/centcom/specops) -"ays" = ( +"axO" = ( /obj/item/mecha_parts/mecha_equipment/tool/sleeper, /obj/item/mecha_parts/mecha_equipment/tool/sleeper, /obj/item/mecha_parts/mecha_equipment/tool/syringe_gun, @@ -10342,7 +10325,7 @@ dir = 1 }, /area/centcom/specops) -"ayt" = ( +"axP" = ( /obj/structure/table/reinforced, /obj/item/device/flash, /obj/item/device/flash, @@ -10362,7 +10345,7 @@ dir = 1 }, /area/centcom/specops) -"ayu" = ( +"axQ" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/handcuffs, /obj/item/clothing/glasses/night{ @@ -10390,7 +10373,7 @@ dir = 1 }, /area/centcom/specops) -"ayv" = ( +"axR" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/vest/ert/security, /obj/item/clothing/suit/armor/vest/ert/security, @@ -10409,7 +10392,7 @@ dir = 1 }, /area/centcom/specops) -"ayw" = ( +"axS" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/shoes/magboots, @@ -10424,7 +10407,7 @@ dir = 1 }, /area/centcom/specops) -"ayx" = ( +"axT" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/security, /obj/item/clothing/accessory/storage/black_vest, @@ -10435,7 +10418,7 @@ dir = 1 }, /area/centcom/specops) -"ayy" = ( +"axU" = ( /obj/structure/table/rack, /obj/item/rig_module/mounted, /obj/item/clothing/accessory/storage/black_vest, @@ -10449,14 +10432,14 @@ dir = 1 }, /area/centcom/specops) -"ayz" = ( +"axV" = ( /obj/machinery/vending/engivend, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"ayA" = ( +"axW" = ( /obj/item/stack/material/glass{ amount = 50 }, @@ -10532,27 +10515,27 @@ dir = 1 }, /area/centcom/specops) -"ayB" = ( +"axX" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"ayC" = ( +"axY" = ( /obj/machinery/porta_turret, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"ayD" = ( +"axZ" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/specops) -"ayE" = ( +"aya" = ( /obj/structure/table/reinforced, /obj/item/weapon/cell/high, /obj/item/weapon/cell/high, @@ -10565,7 +10548,7 @@ dir = 1 }, /area/centcom/specops) -"ayF" = ( +"ayb" = ( /obj/structure/table/reinforced, /obj/item/weapon/crowbar, /obj/item/weapon/screwdriver, @@ -10579,7 +10562,7 @@ dir = 1 }, /area/centcom/specops) -"ayG" = ( +"ayc" = ( /obj/machinery/cell_charger, /obj/structure/table/reinforced, /turf/unsimulated/floor{ @@ -10587,7 +10570,7 @@ dir = 1 }, /area/centcom/specops) -"ayH" = ( +"ayd" = ( /obj/structure/table/reinforced, /obj/item/weapon/crowbar, /obj/item/weapon/screwdriver, @@ -10597,24 +10580,24 @@ dir = 1 }, /area/centcom/specops) -"ayI" = ( +"aye" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 6 }, /area/centcom/control) -"ayJ" = ( +"ayf" = ( /turf/unsimulated/floor{ icon_state = "blue" }, /area/centcom/control) -"ayK" = ( +"ayg" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 8 }, /area/centcom/control) -"ayL" = ( +"ayh" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -10623,7 +10606,7 @@ icon_state = "white" }, /area/centcom/test) -"ayM" = ( +"ayi" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -10632,19 +10615,19 @@ icon_state = "white" }, /area/centcom/test) -"ayN" = ( +"ayj" = ( /turf/unsimulated/floor{ icon_state = "vault"; dir = 9 }, /area/centcom/control) -"ayO" = ( +"ayk" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 4 }, /area/centcom/control) -"ayP" = ( +"ayl" = ( /turf/unsimulated/floor{ icon_state = "engine" }, @@ -10653,7 +10636,7 @@ dir = 6 }, /area/centcom/control) -"ayQ" = ( +"aym" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 1 @@ -10662,13 +10645,13 @@ icon_state = "engine" }, /area/centcom/control) -"ayR" = ( +"ayn" = ( /obj/effect/wingrille_spawn/reinforced_phoron, /turf/unsimulated/floor{ icon_state = "whiteshiny" }, /area/centcom/control) -"ayS" = ( +"ayo" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -10680,7 +10663,7 @@ name = "plating" }, /area/centcom/specops) -"ayT" = ( +"ayp" = ( /obj/machinery/mass_driver{ dir = 8; id = "ASSAULT2"; @@ -10690,7 +10673,7 @@ icon_state = "bot" }, /area/centcom/specops) -"ayU" = ( +"ayq" = ( /obj/item/mecha_parts/mecha_equipment/teleporter, /obj/item/mecha_parts/mecha_tracking, /obj/item/mecha_parts/mecha_tracking, @@ -10702,14 +10685,14 @@ dir = 1 }, /area/centcom/specops) -"ayV" = ( +"ayr" = ( /obj/machinery/vending/engineering, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"ayW" = ( +"ays" = ( /obj/item/device/multitool, /obj/item/device/multitool, /obj/item/device/flash, @@ -10739,14 +10722,14 @@ dir = 1 }, /area/centcom/specops) -"ayX" = ( +"ayt" = ( /obj/machinery/recharge_station, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"ayY" = ( +"ayu" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -10756,25 +10739,25 @@ icon_state = "red" }, /area/centcom/control) -"ayZ" = ( +"ayv" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 4 }, /area/centcom/control) -"aza" = ( +"ayw" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/control) -"azb" = ( +"ayx" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 8 }, /area/centcom/control) -"azc" = ( +"ayy" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -10784,7 +10767,7 @@ dir = 4 }, /area/centcom/control) -"azd" = ( +"ayz" = ( /obj/structure/closet/secure_closet/medical3{ pixel_x = -5 }, @@ -10792,7 +10775,7 @@ icon_state = "white" }, /area/centcom/test) -"aze" = ( +"ayA" = ( /obj/structure/closet/secure_closet/medical1{ pixel_x = 5 }, @@ -10800,7 +10783,7 @@ icon_state = "white" }, /area/centcom/test) -"azf" = ( +"ayB" = ( /obj/structure/closet/secure_closet/medical2{ pixel_x = 5 }, @@ -10808,7 +10791,7 @@ icon_state = "white" }, /area/centcom/test) -"azg" = ( +"ayC" = ( /obj/machinery/sleeper{ icon_state = "sleeper_0"; dir = 8 @@ -10817,7 +10800,7 @@ icon_state = "white" }, /area/centcom/test) -"azh" = ( +"ayD" = ( /turf/unsimulated/floor{ icon_state = "engine" }, @@ -10834,20 +10817,20 @@ icon_state = "wood_siding9" }, /area/centcom/control) -"azi" = ( +"ayE" = ( /obj/structure/window/phoronreinforced, /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"azj" = ( +"ayF" = ( /obj/mecha/working/ripley/firefighter, /turf/unsimulated/floor{ icon_state = "delivery"; dir = 6 }, /area/centcom/specops) -"azk" = ( +"ayG" = ( /obj/item/mecha_parts/mecha_equipment/tool/extinguisher, /obj/item/mecha_parts/mecha_equipment/tool/rcd, /obj/item/weapon/pickaxe/diamonddrill, @@ -10859,7 +10842,7 @@ dir = 1 }, /area/centcom/specops) -"azl" = ( +"ayH" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/flashbangs, /obj/item/weapon/handcuffs, @@ -10873,7 +10856,7 @@ dir = 1 }, /area/centcom/specops) -"azm" = ( +"ayI" = ( /obj/structure/table/reinforced, /obj/item/device/megaphone, /obj/item/weapon/storage/box/trackimp, @@ -10883,7 +10866,7 @@ dir = 1 }, /area/centcom/specops) -"azn" = ( +"ayJ" = ( /obj/structure/table/reinforced, /obj/item/weapon/aicard, /obj/item/weapon/pinpointer/advpinpointer, @@ -10893,7 +10876,7 @@ dir = 1 }, /area/centcom/specops) -"azo" = ( +"ayK" = ( /obj/structure/table/reinforced, /obj/item/device/pda/ert, /turf/unsimulated/floor{ @@ -10901,7 +10884,7 @@ dir = 1 }, /area/centcom/specops) -"azp" = ( +"ayL" = ( /obj/structure/table/reinforced, /obj/item/weapon/gun/energy/gun/nuclear, /obj/item/weapon/hand_tele, @@ -10910,7 +10893,7 @@ dir = 1 }, /area/centcom/specops) -"azq" = ( +"ayM" = ( /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, @@ -10937,7 +10920,7 @@ dir = 1 }, /area/centcom/specops) -"azr" = ( +"ayN" = ( /obj/machinery/door/airlock/centcom{ name = "Special Operations"; opacity = 1; @@ -10948,7 +10931,7 @@ dir = 8 }, /area/centcom/specops) -"azs" = ( +"ayO" = ( /obj/structure/table/reinforced, /obj/item/weapon/crowbar, /obj/item/weapon/screwdriver, @@ -10957,12 +10940,12 @@ dir = 1 }, /area/centcom/specops) -"azt" = ( +"ayP" = ( /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/specops) -"azu" = ( +"ayQ" = ( /obj/structure/table/reinforced, /obj/machinery/recharger{ pixel_y = 4 @@ -10971,7 +10954,7 @@ icon_state = "floor" }, /area/centcom/control) -"azv" = ( +"ayR" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10980,7 +10963,7 @@ icon_state = "floor" }, /area/centcom/control) -"azw" = ( +"ayS" = ( /mob/living/silicon/decoy{ name = "A.L.I.C.E." }, @@ -10988,7 +10971,7 @@ icon_state = "whiteshiny" }, /area/centcom/control) -"azx" = ( +"ayT" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -10996,19 +10979,19 @@ icon_state = "floor" }, /area/centcom/control) -"azy" = ( +"ayU" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/donut, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"azz" = ( +"ayV" = ( /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/test) -"azA" = ( +"ayW" = ( /obj/structure/artilleryplaceholder{ icon_state = "11" }, @@ -11017,7 +11000,7 @@ dir = 1 }, /area/centcom/control) -"azB" = ( +"ayX" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "battery2"; @@ -11028,7 +11011,7 @@ dir = 8 }, /area/centcom/control) -"azC" = ( +"ayY" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -11040,7 +11023,7 @@ name = "plating" }, /area/centcom/specops) -"azD" = ( +"ayZ" = ( /obj/machinery/mass_driver{ dir = 8; id = "ASSAULT1"; @@ -11050,7 +11033,7 @@ icon_state = "bot" }, /area/centcom/specops) -"azE" = ( +"aza" = ( /obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, /obj/item/mecha_parts/mecha_equipment/tool/cable_layer, /obj/structure/table/reinforced/steel, @@ -11059,7 +11042,7 @@ dir = 1 }, /area/centcom/specops) -"azF" = ( +"azb" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/vest/ert/command, /obj/item/clothing/head/helmet/ert/command, @@ -11069,7 +11052,7 @@ dir = 1 }, /area/centcom/specops) -"azG" = ( +"azc" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/accessory/storage/black_vest, @@ -11079,7 +11062,7 @@ dir = 1 }, /area/centcom/specops) -"azH" = ( +"azd" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/stunrevolver, /obj/item/weapon/gun/energy/stunrevolver, @@ -11096,7 +11079,7 @@ dir = 1 }, /area/centcom/specops) -"azI" = ( +"aze" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/vest/ert/engineer, /obj/item/clothing/suit/armor/vest/ert/engineer, @@ -11115,7 +11098,7 @@ dir = 1 }, /area/centcom/specops) -"azJ" = ( +"azf" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/engineer, /obj/item/clothing/accessory/storage/brown_vest, @@ -11126,33 +11109,33 @@ dir = 1 }, /area/centcom/specops) -"azK" = ( +"azg" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"azL" = ( +"azh" = ( /obj/structure/closet/crate/freezer/rations, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"azM" = ( +"azi" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ icon_state = "vault"; dir = 8 }, /area/centcom/specops) -"azN" = ( +"azj" = ( /obj/structure/window/reinforced, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"azO" = ( +"azk" = ( /obj/structure/window/reinforced, /obj/machinery/light/small{ dir = 1 @@ -11161,17 +11144,17 @@ icon_state = "dark" }, /area/centcom/specops) -"azP" = ( +"azl" = ( /obj/structure/sign/securearea, /turf/unsimulated/wall/riveted, /area/centcom/specops) -"azQ" = ( +"azm" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 4 }, /area/centcom/control) -"azR" = ( +"azn" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -11179,7 +11162,7 @@ icon_state = "floor" }, /area/centcom/control) -"azS" = ( +"azo" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -11196,7 +11179,7 @@ icon_state = "floor" }, /area/centcom/control) -"azT" = ( +"azp" = ( /obj/machinery/door/window{ dir = 2; name = "AI Core Door"; @@ -11206,7 +11189,7 @@ icon_state = "floor" }, /area/centcom/control) -"azU" = ( +"azq" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -11215,7 +11198,7 @@ icon_state = "floor" }, /area/centcom/control) -"azV" = ( +"azr" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -11223,28 +11206,28 @@ icon_state = "floor" }, /area/centcom/control) -"azW" = ( +"azs" = ( /obj/machinery/computer/crew, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"azX" = ( +"azt" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 1 }, /area/centcom/control) -"azY" = ( +"azu" = ( /obj/structure/sign/securearea, /turf/unsimulated/wall/riveted, /area/centcom/test) -"azZ" = ( +"azv" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/test) -"aAa" = ( +"azw" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -11254,7 +11237,7 @@ icon_state = "dark" }, /area/centcom/test) -"aAb" = ( +"azx" = ( /obj/machinery/door/airlock/centcom{ name = "Bluespace Artillery Deck"; opacity = 1 @@ -11269,14 +11252,14 @@ dir = 8 }, /area/centcom/control) -"aAc" = ( +"azy" = ( /obj/mecha/working/hoverpod, /turf/unsimulated/floor{ icon_state = "delivery"; dir = 6 }, /area/centcom/specops) -"aAd" = ( +"azz" = ( /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, @@ -11291,7 +11274,7 @@ dir = 1 }, /area/centcom/specops) -"aAe" = ( +"azA" = ( /obj/structure/table/rack, /obj/item/rig_module/mounted/taser, /obj/item/rig_module/mounted/taser, @@ -11322,7 +11305,7 @@ dir = 1 }, /area/centcom/specops) -"aAf" = ( +"azB" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/pistol, /obj/item/weapon/gun/projectile/automatic/rifle/w556, @@ -11335,7 +11318,7 @@ dir = 8 }, /area/centcom/specops) -"aAg" = ( +"azC" = ( /obj/machinery/door/airlock/centcom{ name = "Armory Special Operations"; opacity = 1; @@ -11346,7 +11329,7 @@ dir = 8 }, /area/centcom/specops) -"aAh" = ( +"azD" = ( /obj/machinery/door/airlock/centcom{ name = "Engineering Special Operations"; opacity = 1; @@ -11357,7 +11340,7 @@ dir = 8 }, /area/centcom/specops) -"aAi" = ( +"azE" = ( /obj/machinery/door/airlock/centcom{ name = "Special Operations"; opacity = 1; @@ -11375,12 +11358,12 @@ dir = 8 }, /area/centcom/specops) -"aAj" = ( +"azF" = ( /turf/unsimulated/floor{ icon_state = "bot" }, /area/centcom/specops) -"aAk" = ( +"azG" = ( /obj/machinery/door/airlock/centcom{ name = "Special Operations"; opacity = 1; @@ -11390,7 +11373,7 @@ icon_state = "delivery" }, /area/centcom/specops) -"aAl" = ( +"azH" = ( /obj/machinery/door/airlock/centcom{ name = "Special Operations"; opacity = 1; @@ -11407,7 +11390,7 @@ icon_state = "delivery" }, /area/centcom/specops) -"aAm" = ( +"azI" = ( /obj/machinery/door/airlock/centcom{ name = "Bridge"; opacity = 1; @@ -11417,7 +11400,7 @@ icon_state = "floor" }, /area/centcom/control) -"aAn" = ( +"azJ" = ( /obj/structure/bed/chair, /obj/effect/landmark{ name = "CCIAAgent" @@ -11426,7 +11409,7 @@ icon_state = "floor" }, /area/centcom/control) -"aAo" = ( +"azK" = ( /obj/machinery/door/airlock/centcom{ name = "Bluespace Artillery Deck"; opacity = 1 @@ -11440,7 +11423,7 @@ icon_state = "dark" }, /area/centcom/test) -"aAp" = ( +"azL" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ @@ -11448,11 +11431,11 @@ dir = 8 }, /area/centcom/test) -"aAq" = ( +"azM" = ( /obj/structure/sign/nosmoking_2, /turf/unsimulated/wall/riveted, /area/centcom/control) -"aAr" = ( +"azN" = ( /turf/unsimulated/floor{ icon_state = "gcircuit" }, @@ -11468,7 +11451,7 @@ icon_state = "wood_siding10" }, /area/centcom/control) -"aAs" = ( +"azO" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -11480,7 +11463,7 @@ name = "plating" }, /area/centcom/specops) -"aAt" = ( +"azP" = ( /obj/machinery/mass_driver{ dir = 8; id = "ASSAULT0"; @@ -11490,7 +11473,7 @@ icon_state = "bot" }, /area/centcom/specops) -"aAu" = ( +"azQ" = ( /obj/machinery/camera/network/ert{ c_tag = "Assault Armor South"; dir = 1 @@ -11500,7 +11483,7 @@ dir = 8 }, /area/centcom/specops) -"aAv" = ( +"azR" = ( /obj/machinery/door/airlock/centcom{ name = "Special Operations Command"; opacity = 1; @@ -11511,7 +11494,7 @@ dir = 8 }, /area/centcom/specops) -"aAw" = ( +"azS" = ( /obj/structure/sign/securearea{ name = "\improper ARMORY"; pixel_y = 32 @@ -11526,7 +11509,7 @@ dir = 8 }, /area/centcom/specops) -"aAx" = ( +"azT" = ( /obj/structure/sign/securearea{ name = "ENGINEERING ACCESS"; pixel_y = 32 @@ -11536,7 +11519,7 @@ dir = 8 }, /area/centcom/specops) -"aAy" = ( +"azU" = ( /obj/item/device/radio/intercom{ broadcasting = 1; dir = 1; @@ -11550,7 +11533,7 @@ dir = 8 }, /area/centcom/specops) -"aAz" = ( +"azV" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; pixel_y = 32 @@ -11560,7 +11543,7 @@ dir = 8 }, /area/centcom/specops) -"aAA" = ( +"azW" = ( /obj/structure/table/rack, /obj/item/clothing/head/beret/centcom/officer, /obj/item/clothing/head/beret/centcom/officer, @@ -11582,7 +11565,7 @@ dir = 1 }, /area/centcom/specops) -"aAB" = ( +"azX" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -11590,7 +11573,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aAC" = ( +"azY" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -11599,43 +11582,43 @@ icon_state = "dark" }, /area/centcom/specops) -"aAD" = ( +"azZ" = ( /obj/structure/sign/nosmoking_2, /turf/unsimulated/wall/riveted, /area/centcom/specops) -"aAE" = ( +"aAa" = ( /turf/unsimulated/floor{ icon_state = "bluecorner" }, /area/centcom/control) -"aAF" = ( +"aAb" = ( /obj/machinery/computer/robotics, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aAG" = ( +"aAc" = ( /obj/item/modular_computer/console/preset/command, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aAH" = ( +"aAd" = ( /obj/machinery/computer/med_data, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aAI" = ( +"aAe" = ( /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/control) -"aAJ" = ( +"aAf" = ( /obj/structure/sign/securearea, /turf/unsimulated/wall/riveted, /area/centcom/control) -"aAK" = ( +"aAg" = ( /obj/structure/sign/greencross{ pixel_y = -32 }, @@ -11644,13 +11627,13 @@ dir = 8 }, /area/centcom/specops) -"aAL" = ( +"aAh" = ( /obj/structure/bed/chair, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"aAM" = ( +"aAi" = ( /obj/structure/table/reinforced, /obj/item/device/megaphone, /obj/item/device/megaphone, @@ -11661,7 +11644,7 @@ dir = 1 }, /area/centcom/specops) -"aAN" = ( +"aAj" = ( /obj/structure/table/standard, /obj/machinery/recharger{ pixel_y = 4 @@ -11673,25 +11656,25 @@ icon_state = "dark" }, /area/centcom/specops) -"aAO" = ( +"aAk" = ( /obj/structure/bed/chair/office/light, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"aAP" = ( +"aAl" = ( /obj/machinery/computer/arcade, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"aAQ" = ( +"aAm" = ( /obj/structure/undies_wardrobe, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"aAR" = ( +"aAn" = ( /obj/structure/table/reinforced, /obj/item/device/magnetic_lock, /obj/item/device/magnetic_lock, @@ -11701,13 +11684,13 @@ icon_state = "floor" }, /area/centcom/control) -"aAS" = ( +"aAo" = ( /obj/structure/bed/chair, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aAT" = ( +"aAp" = ( /obj/machinery/button/remote/blast_door{ id = "crescent_checkpoint_access"; name = "Crescent Checkpoint Access"; @@ -11738,18 +11721,18 @@ icon_state = "floor" }, /area/centcom/control) -"aAU" = ( +"aAq" = ( /obj/structure/table/reinforced, /obj/item/weapon/card/id/captains_spare, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aAV" = ( +"aAr" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor, /area/centcom/control) -"aAW" = ( +"aAs" = ( /obj/structure/table/reinforced, /obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, /obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, @@ -11760,7 +11743,7 @@ dir = 1 }, /area/centcom/specops) -"aAX" = ( +"aAt" = ( /obj/machinery/door/airlock/centcom{ name = "Medical Special Operations"; opacity = 1; @@ -11771,7 +11754,7 @@ dir = 8 }, /area/centcom/specops) -"aAY" = ( +"aAu" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; hacked = 1; @@ -11786,20 +11769,20 @@ dir = 1 }, /area/centcom/specops) -"aAZ" = ( +"aAv" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/donut, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"aBa" = ( +"aAw" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"aBb" = ( +"aAx" = ( /obj/structure/table/reinforced, /obj/item/weapon/crowbar, /obj/item/weapon/screwdriver, @@ -11807,7 +11790,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aBc" = ( +"aAy" = ( /obj/structure/table/reinforced, /obj/item/device/pda/ert, /obj/item/device/pda/ert, @@ -11821,7 +11804,7 @@ dir = 1 }, /area/centcom/specops) -"aBd" = ( +"aAz" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -11829,7 +11812,7 @@ }, /turf/unsimulated/wall/riveted, /area/centcom/specops) -"aBe" = ( +"aAA" = ( /obj/structure/table/rack, /obj/item/device/lightreplacer/advanced, /obj/item/device/lightreplacer/advanced, @@ -11844,7 +11827,7 @@ dir = 1 }, /area/centcom/specops) -"aBf" = ( +"aAB" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -11854,32 +11837,32 @@ dir = 4 }, /area/centcom/control) -"aBg" = ( +"aAC" = ( /obj/structure/table/reinforced, /obj/item/device/pda/captain, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aBh" = ( +"aAD" = ( /obj/machinery/computer/secure_data, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aBi" = ( +"aAE" = ( /obj/machinery/computer/security, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aBj" = ( +"aAF" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/control) -"aBk" = ( +"aAG" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -11889,7 +11872,7 @@ dir = 8 }, /area/centcom/control) -"aBl" = ( +"aAH" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "battery1"; @@ -11900,7 +11883,7 @@ dir = 8 }, /area/centcom/control) -"aBm" = ( +"aAI" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/belt/medical, /obj/item/weapon/storage/belt/medical, @@ -11917,7 +11900,7 @@ dir = 1 }, /area/centcom/specops) -"aBn" = ( +"aAJ" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/belt/medical, /obj/item/weapon/storage/belt/medical, @@ -11935,7 +11918,7 @@ dir = 1 }, /area/centcom/specops) -"aBo" = ( +"aAK" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/autoinjectors, /obj/item/weapon/storage/box/beakers, @@ -11952,7 +11935,7 @@ dir = 1 }, /area/centcom/specops) -"aBp" = ( +"aAL" = ( /obj/machinery/chemical_dispenser/ert, /obj/item/weapon/reagent_containers/glass/beaker/large, /turf/unsimulated/floor{ @@ -11960,14 +11943,14 @@ dir = 1 }, /area/centcom/specops) -"aBq" = ( +"aAM" = ( /obj/machinery/chem_master, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"aBr" = ( +"aAN" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -11978,7 +11961,7 @@ dir = 8 }, /area/centcom/specops) -"aBs" = ( +"aAO" = ( /obj/structure/closet/crate, /obj/item/clothing/shoes/magboots, /obj/item/clothing/shoes/magboots, @@ -11992,7 +11975,7 @@ dir = 1 }, /area/centcom/specops) -"aBt" = ( +"aAP" = ( /obj/structure/table/reinforced, /obj/item/weapon/stamp/centcomm, /obj/item/weapon/pen, @@ -12004,7 +11987,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aBu" = ( +"aAQ" = ( /obj/structure/table/reinforced, /obj/item/device/paicard, /obj/item/device/paicard, @@ -12016,7 +11999,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aBv" = ( +"aAR" = ( /obj/effect/landmark{ name = "Response Team" }, @@ -12028,7 +12011,7 @@ dir = 1 }, /area/centcom/specops) -"aBw" = ( +"aAS" = ( /obj/structure/closet{ icon_closed = "syndicate1"; icon_opened = "syndicate1open"; @@ -12043,7 +12026,7 @@ dir = 8 }, /area/centcom/specops) -"aBx" = ( +"aAT" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -12054,7 +12037,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aBy" = ( +"aAU" = ( /obj/item/tape/engineering{ icon_state = "engineering_h" }, @@ -12062,7 +12045,7 @@ icon_state = "dark" }, /area/centcom/control) -"aBz" = ( +"aAV" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -12074,7 +12057,7 @@ icon_state = "dark" }, /area/centcom/control) -"aBA" = ( +"aAW" = ( /obj/structure/closet/crate, /obj/item/device/magnetic_lock, /obj/item/device/magnetic_lock, @@ -12087,7 +12070,7 @@ dir = 1 }, /area/centcom/specops) -"aBB" = ( +"aAX" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -12095,7 +12078,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aBC" = ( +"aAY" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/janitor, /obj/item/weapon/rig/ert/janitor, @@ -12103,7 +12086,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aBD" = ( +"aAZ" = ( /obj/structure/table/rack, /obj/item/weapon/storage/backpack/security, /obj/item/clothing/under/syndicate/combat, @@ -12142,7 +12125,7 @@ dir = 1 }, /area/centcom/specops) -"aBE" = ( +"aBa" = ( /obj/item/weapon/mop, /obj/structure/mopbucket, /turf/unsimulated/floor{ @@ -12150,7 +12133,7 @@ dir = 1 }, /area/centcom/specops) -"aBF" = ( +"aBb" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket{ amount_per_transfer_from_this = 50 @@ -12160,13 +12143,13 @@ dir = 1 }, /area/centcom/specops) -"aBG" = ( +"aBc" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 1 }, /area/centcom/control) -"aBH" = ( +"aBd" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -12177,13 +12160,13 @@ dir = 1 }, /area/centcom/control) -"aBI" = ( +"aBe" = ( /obj/item/weapon/caution, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"aBJ" = ( +"aBf" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -12194,7 +12177,7 @@ icon_state = "dark" }, /area/centcom/control) -"aBK" = ( +"aBg" = ( /turf/unsimulated/floor{ icon_state = "gcircuit" }, @@ -12212,13 +12195,13 @@ icon_state = "wood_siding10" }, /area/centcom/control) -"aBL" = ( +"aBh" = ( /turf/unsimulated/beach/sand{ density = 1; opacity = 1 }, /area/beach) -"aBM" = ( +"aBi" = ( /obj/structure/table/reinforced, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, @@ -12234,7 +12217,7 @@ dir = 1 }, /area/centcom/specops) -"aBN" = ( +"aBj" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "specops_centcom_dock"; @@ -12249,7 +12232,7 @@ dir = 8 }, /area/centcom/specops) -"aBO" = ( +"aBk" = ( /obj/structure/table/reinforced, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, @@ -12269,7 +12252,7 @@ dir = 1 }, /area/centcom/specops) -"aBP" = ( +"aBl" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -12278,7 +12261,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aBQ" = ( +"aBm" = ( /obj/structure/closet{ icon_closed = "syndicate1"; icon_opened = "syndicate1open"; @@ -12297,7 +12280,7 @@ dir = 8 }, /area/centcom/specops) -"aBR" = ( +"aBn" = ( /obj/item/weapon/reagent_containers/glass/bucket{ amount_per_transfer_from_this = 50 }, @@ -12305,27 +12288,27 @@ icon_state = "dark" }, /area/centcom/control) -"aBS" = ( +"aBo" = ( /obj/effect/decal/cleanable/greenglow, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"aBT" = ( +"aBp" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 4 }, /area/centcom/control) -"aBU" = ( +"aBq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"aBV" = ( +"aBr" = ( /turf/unsimulated/floor{ icon_state = "engine" }, @@ -12335,7 +12318,7 @@ dir = 6 }, /area/centcom/control) -"aBW" = ( +"aBs" = ( /turf/unsimulated/floor{ icon_state = "engine" }, @@ -12346,7 +12329,7 @@ dir = 6 }, /area/centcom/control) -"aBX" = ( +"aBt" = ( /turf/unsimulated/floor{ icon_state = "engine" }, @@ -12357,7 +12340,7 @@ dir = 6 }, /area/centcom/control) -"aBY" = ( +"aBu" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 1 @@ -12367,7 +12350,7 @@ icon_state = "engine" }, /area/centcom/control) -"aBZ" = ( +"aBv" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 1 @@ -12378,18 +12361,18 @@ icon_state = "engine" }, /area/centcom/control) -"aCa" = ( +"aBw" = ( /turf/unsimulated/beach/sand, /area/beach) -"aCb" = ( +"aBx" = ( /obj/structure/signpost, /turf/unsimulated/beach/sand, /area/beach) -"aCc" = ( +"aBy" = ( /obj/structure/closet, /turf/unsimulated/beach/sand, /area/beach) -"aCd" = ( +"aBz" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/bodybags, /obj/item/weapon/storage/firstaid/o2, @@ -12415,7 +12398,7 @@ dir = 1 }, /area/centcom/specops) -"aCe" = ( +"aBA" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/bodybags, /obj/item/weapon/storage/firstaid/o2, @@ -12442,7 +12425,7 @@ dir = 1 }, /area/centcom/specops) -"aCf" = ( +"aBB" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/blood/OMinus, /obj/item/weapon/reagent_containers/blood/OMinus, @@ -12458,14 +12441,14 @@ dir = 1 }, /area/centcom/specops) -"aCg" = ( +"aBC" = ( /obj/machinery/iv_drip, /turf/unsimulated/floor{ icon_state = "vault"; dir = 1 }, /area/centcom/specops) -"aCh" = ( +"aBD" = ( /obj/structure/closet/crate/medical, /obj/item/weapon/circular_saw, /obj/item/weapon/surgicaldrill, @@ -12499,7 +12482,7 @@ dir = 1 }, /area/centcom/specops) -"aCi" = ( +"aBE" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/stunrevolver, /obj/item/weapon/gun/energy/stunrevolver, @@ -12516,7 +12499,7 @@ dir = 1 }, /area/centcom/specops) -"aCj" = ( +"aBF" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/vest/ert/medical, /obj/item/clothing/suit/armor/vest/ert/medical, @@ -12535,7 +12518,7 @@ dir = 1 }, /area/centcom/specops) -"aCk" = ( +"aBG" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/medical, /obj/item/clothing/accessory/storage/black_vest, @@ -12546,7 +12529,7 @@ dir = 1 }, /area/centcom/specops) -"aCl" = ( +"aBH" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, @@ -12561,7 +12544,7 @@ dir = 1 }, /area/centcom/specops) -"aCm" = ( +"aBI" = ( /obj/structure/table/rack, /obj/item/weapon/tank/emergency_oxygen/double, /obj/item/weapon/tank/emergency_oxygen/double, @@ -12576,12 +12559,12 @@ dir = 1 }, /area/centcom/specops) -"aCn" = ( +"aBJ" = ( /turf/unsimulated/floor{ icon_state = "loadingarea" }, /area/centcom/specops) -"aCo" = ( +"aBK" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12589,7 +12572,7 @@ icon_state = "loadingarea" }, /area/centcom/specops) -"aCp" = ( +"aBL" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; prices = list() @@ -12598,34 +12581,34 @@ icon_state = "dark" }, /area/centcom/specops) -"aCq" = ( +"aBM" = ( /turf/template_noop, /area/centcom/specops) -"aCr" = ( +"aBN" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 10 }, /area/centcom/control) -"aCs" = ( +"aBO" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/centcom/control) -"aCt" = ( +"aBP" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 6 }, /area/centcom/control) -"aCu" = ( +"aBQ" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"aCv" = ( +"aBR" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -12636,7 +12619,7 @@ icon_state = "dark" }, /area/centcom/control) -"aCw" = ( +"aBS" = ( /turf/unsimulated/floor{ icon_state = "engine" }, @@ -12654,29 +12637,29 @@ icon_state = "wood_siding9" }, /area/centcom/control) -"aCx" = ( +"aBT" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"aCy" = ( +"aBU" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/spot, /turf/unsimulated/floor{ icon_state = "engine" }, /area/centcom/control) -"aCz" = ( +"aBV" = ( /obj/effect/overlay/palmtree_l, /turf/unsimulated/beach/sand, /area/beach) -"aCA" = ( +"aBW" = ( /obj/effect/overlay/palmtree_r, /obj/effect/overlay/coconut, /turf/unsimulated/beach/sand, /area/beach) -"aCB" = ( +"aBX" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -12688,7 +12671,7 @@ dir = 5 }, /area/centcom/specops) -"aCC" = ( +"aBY" = ( /obj/machinery/vending/cola{ name = "Robust Softdrinks"; prices = list() @@ -12697,7 +12680,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aCD" = ( +"aBZ" = ( /obj/machinery/door/airlock/centcom{ name = "Holding Cell"; opacity = 1; @@ -12712,30 +12695,30 @@ icon_state = "floor" }, /area/centcom/control) -"aCE" = ( +"aCa" = ( /obj/effect/overlay/coconut, /turf/unsimulated/beach/sand, /area/beach) -"aCF" = ( +"aCb" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; name = "shuttle bay blast door" }, /area/centcom/specops) -"aCG" = ( +"aCc" = ( /turf/simulated/shuttle/plating, /area/centcom/specops) -"aCH" = ( +"aCd" = ( /turf/simulated/shuttle/plating, /turf/simulated/shuttle/wall/dark{ dir = 8; icon_state = "diagonalWall3" }, /area/shuttle/specops/centcom) -"aCI" = ( +"aCe" = ( /turf/simulated/shuttle/wall/dark, /area/shuttle/specops/centcom) -"aCJ" = ( +"aCf" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -12748,14 +12731,14 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aCK" = ( +"aCg" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_r"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/specops/centcom) -"aCL" = ( +"aCh" = ( /obj/machinery/vending/cigarette{ name = "cigarette machine"; prices = list() @@ -12764,7 +12747,7 @@ icon_state = "dark" }, /area/centcom/specops) -"aCM" = ( +"aCi" = ( /obj/effect/landmark{ name = "Response Team" }, @@ -12779,13 +12762,13 @@ dir = 1 }, /area/centcom/specops) -"aCN" = ( +"aCj" = ( /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/centcom/holding) -"aCO" = ( +"aCk" = ( /obj/item/weapon/stool/padded, /obj/item/weapon/stool/padded, /turf/unsimulated/floor{ @@ -12793,7 +12776,7 @@ icon_state = "cult" }, /area/centcom/holding) -"aCP" = ( +"aCl" = ( /obj/item/weapon/stool/padded, /obj/machinery/light{ dir = 1; @@ -12805,33 +12788,33 @@ icon_state = "cult" }, /area/centcom/holding) -"aCQ" = ( +"aCm" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor, /area/centcom/holding) -"aCR" = ( +"aCn" = ( /obj/machinery/computer/secure_data, /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/centcom/holding) -"aCS" = ( +"aCo" = ( /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aCT" = ( +"aCp" = ( /obj/item/weapon/stool/padded, /turf/unsimulated/floor{ icon_state = "red"; dir = 4 }, /area/centcom/holding) -"aCU" = ( +"aCq" = ( /turf/unsimulated/wall/riveted, /area/centcom/holding) -"aCV" = ( +"aCr" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; opacity = 1; @@ -12846,7 +12829,7 @@ icon_state = "floor" }, /area/centcom/control) -"aCW" = ( +"aCs" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; pixel_y = 32 @@ -12865,7 +12848,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aCX" = ( +"aCt" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; pixel_y = 32 @@ -12874,7 +12857,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aCY" = ( +"aCu" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "specops_shuttle_port"; @@ -12888,18 +12871,18 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aCZ" = ( +"aCv" = ( /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDa" = ( +"aCw" = ( /obj/structure/bed/chair, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDb" = ( +"aCx" = ( /obj/machinery/computer/security/telescreen{ desc = ""; name = "Spec. Ops. Monitor"; @@ -12911,7 +12894,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDc" = ( +"aCy" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12921,40 +12904,40 @@ }, /turf/unsimulated/floor, /area/shuttle/specops/centcom) -"aDd" = ( +"aCz" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/specops/centcom) -"aDe" = ( +"aCA" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/centcom/holding) -"aDf" = ( +"aCB" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/centcom/holding) -"aDg" = ( +"aCC" = ( /obj/structure/banner, /turf/unsimulated/floor{ icon_state = "green"; dir = 9 }, /area/centcom/holding) -"aDh" = ( +"aCD" = ( /turf/unsimulated/floor{ icon_state = "greencorner"; dir = 1 }, /area/centcom/holding) -"aDi" = ( +"aCE" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -12965,21 +12948,21 @@ dir = 4 }, /area/centcom/holding) -"aDj" = ( +"aCF" = ( /obj/structure/banner, /turf/unsimulated/floor{ icon_state = "green"; dir = 5 }, /area/centcom/holding) -"aDk" = ( +"aCG" = ( /turf/unsimulated/floor, /area/centcom/holding) -"aDl" = ( +"aCH" = ( /obj/effect/overlay/palmtree_r, /turf/unsimulated/beach/sand, /area/beach) -"aDm" = ( +"aCI" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -12990,7 +12973,7 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/specops/centcom) -"aDn" = ( +"aCJ" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "specops_shuttle_fore"; @@ -13003,7 +12986,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDo" = ( +"aCK" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -13011,57 +12994,57 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDp" = ( +"aCL" = ( /obj/item/weapon/stool/padded, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/centcom/holding) -"aDq" = ( +"aCM" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 8 }, /area/centcom/holding) -"aDr" = ( +"aCN" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/centcom/holding) -"aDs" = ( +"aCO" = ( /turf/unsimulated/floor{ name = "plating" }, /area/centcom/holding) -"aDt" = ( +"aCP" = ( /turf/simulated/shuttle/wall, /area/shuttle/escape/centcom) -"aDu" = ( +"aCQ" = ( /obj/structure/window/shuttle, /obj/structure/grille, /turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"aDv" = ( +"aCR" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; name = "shuttle bay blast door" }, /area/centcom/holding) -"aDw" = ( +"aCS" = ( /obj/effect/landmark{ name = "endgame_exit" }, /turf/unsimulated/beach/sand, /area/beach) -"aDx" = ( +"aCT" = ( /turf/simulated/shuttle/plating, /turf/simulated/shuttle/wall/dark{ icon_state = "diagonalWall3" }, /area/shuttle/specops/centcom) -"aDy" = ( +"aCU" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -13069,7 +13052,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDz" = ( +"aCV" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -13082,7 +13065,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDA" = ( +"aCW" = ( /obj/machinery/computer/prisoner{ name = "Implant Management" }, @@ -13090,7 +13073,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDB" = ( +"aCX" = ( /obj/item/modular_computer/console/preset/command, /obj/item/device/radio/intercom{ broadcasting = 0; @@ -13104,7 +13087,7 @@ icon_state = "floor4" }, /area/shuttle/specops/centcom) -"aDC" = ( +"aCY" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Arrivals - Holding Cell"; dir = 4 @@ -13114,14 +13097,14 @@ icon_state = "cult" }, /area/centcom/holding) -"aDD" = ( +"aCZ" = ( /obj/machinery/door/airlock/glass_security{ name = "Holding Cell"; req_access = list(2) }, /turf/unsimulated/floor, /area/centcom/holding) -"aDE" = ( +"aDa" = ( /obj/item/weapon/stool/padded, /obj/machinery/light{ dir = 4; @@ -13132,13 +13115,13 @@ dir = 4 }, /area/centcom/holding) -"aDF" = ( +"aDb" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/holding) -"aDG" = ( +"aDc" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "CentComPort"; @@ -13149,7 +13132,7 @@ dir = 8 }, /area/centcom/holding) -"aDH" = ( +"aDd" = ( /obj/machinery/door/airlock/centcom{ name = "Arrivals Processing"; opacity = 1; @@ -13159,7 +13142,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aDI" = ( +"aDe" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 8 @@ -13168,25 +13151,25 @@ name = "plating" }, /area/centcom/holding) -"aDJ" = ( +"aDf" = ( /obj/machinery/computer/secure_data, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aDL" = ( +"aDg" = ( /obj/machinery/computer/shuttle_control/emergency, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aDN" = ( +"aDh" = ( /obj/machinery/computer/med_data, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aDO" = ( +"aDi" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 4 @@ -13195,11 +13178,11 @@ name = "plating" }, /area/centcom/holding) -"aDP" = ( +"aDj" = ( /obj/structure/table/standard, /turf/unsimulated/beach/sand, /area/beach) -"aDQ" = ( +"aDk" = ( /obj/structure/table/standard, /obj/item/clothing/under/rainbow, /obj/item/clothing/glasses/sunglasses, @@ -13208,14 +13191,14 @@ }, /turf/unsimulated/beach/sand, /area/beach) -"aDR" = ( +"aDl" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/specops/centcom) -"aDS" = ( +"aDm" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/red, /turf/unsimulated/floor{ @@ -13223,13 +13206,13 @@ icon_state = "cult" }, /area/centcom/holding) -"aDT" = ( +"aDn" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 4 }, /area/centcom/holding) -"aDU" = ( +"aDo" = ( /obj/machinery/door/airlock/glass_security{ name = "Holding Cell"; req_access = list(2) @@ -13238,7 +13221,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aDV" = ( +"aDp" = ( /obj/machinery/door/window/northleft{ base_state = "right"; dir = 8; @@ -13250,26 +13233,26 @@ icon_state = "floor" }, /area/centcom/holding) -"aDW" = ( +"aDq" = ( /obj/item/modular_computer/console/preset/command, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aDX" = ( +"aDr" = ( /turf/simulated/shuttle/wall{ fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor") }, /area/shuttle/escape/centcom) -"aEa" = ( +"aDs" = ( /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aEc" = ( +"aDt" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/snacks/chips, /turf/unsimulated/beach/sand, /area/beach) -"aEd" = ( +"aDu" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, @@ -13279,17 +13262,17 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/cola, /turf/unsimulated/beach/sand, /area/beach) -"aEe" = ( +"aDv" = ( /obj/item/weapon/beach_ball, /turf/unsimulated/beach/sand, /area/beach) -"aEf" = ( +"aDw" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 10 }, /area/centcom/holding) -"aEg" = ( +"aDx" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13297,7 +13280,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aEh" = ( +"aDy" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/button/remote/blast_door{ desc = "A remote control switch for port-side blast doors."; @@ -13311,7 +13294,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aEi" = ( +"aDz" = ( /obj/machinery/computer/secure_data, /obj/machinery/camera/network/crescent{ c_tag = "Crescent Arrivals North"; @@ -13321,42 +13304,42 @@ icon_state = "floor" }, /area/centcom/holding) -"aEk" = ( +"aDA" = ( /obj/machinery/hologram/holopad, /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aEm" = ( +"aDB" = ( /obj/machinery/light/spot, /turf/simulated/shuttle/plating, /area/centcom/specops) -"aEn" = ( +"aDC" = ( /obj/machinery/light, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/centcom/holding) -"aEo" = ( +"aDD" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/centcom/holding) -"aEp" = ( +"aDE" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aEq" = ( +"aDF" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ icon_state = "red"; dir = 4 }, /area/centcom/holding) -"aEr" = ( +"aDG" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 1; @@ -13369,7 +13352,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aEs" = ( +"aDH" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -13384,7 +13367,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aEt" = ( +"aDI" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -13399,7 +13382,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aEv" = ( +"aDJ" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -13407,13 +13390,13 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aEw" = ( +"aDK" = ( /obj/item/modular_computer/console/preset/security, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aEz" = ( +"aDL" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -13421,10 +13404,10 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aEB" = ( +"aDM" = ( /turf/unsimulated/wall/riveted, /area/centcom/ferry) -"aEC" = ( +"aDN" = ( /obj/machinery/atm{ pixel_x = -26 }, @@ -13434,19 +13417,19 @@ dir = 8 }, /area/centcom/holding) -"aED" = ( +"aDO" = ( /turf/unsimulated/floor{ icon_state = "delivery" }, /area/centcom/holding) -"aEE" = ( +"aDP" = ( /obj/structure/banner, /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/centcom/holding) -"aEG" = ( +"aDQ" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; name = "escapeshuttle_leave"; @@ -13465,7 +13448,7 @@ }, /turf/template_noop, /area/template_noop) -"aEH" = ( +"aDR" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; name = "escapeshuttle_leave"; @@ -13484,13 +13467,13 @@ }, /turf/simulated/mineral, /area/template_noop) -"aEI" = ( +"aDS" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 8 }, /area/centcom/ferry) -"aEJ" = ( +"aDT" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 1 @@ -13499,12 +13482,12 @@ name = "plating" }, /area/centcom/ferry) -"aEK" = ( +"aDU" = ( /turf/unsimulated/floor{ name = "plating" }, /area/centcom/ferry) -"aEL" = ( +"aDV" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "centcom_shuttle_bay"; @@ -13517,7 +13500,7 @@ name = "plating" }, /area/centcom/ferry) -"aEM" = ( +"aDW" = ( /obj/machinery/computer/shuttle_control{ req_access = list(101); shuttle_tag = "Centcom" @@ -13526,7 +13509,7 @@ name = "plating" }, /area/centcom/ferry) -"aEN" = ( +"aDX" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -13548,19 +13531,19 @@ name = "plating" }, /area/centcom/ferry) -"aEO" = ( +"aDY" = ( /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 }, /area/centcom/ferry) -"aEP" = ( +"aDZ" = ( /turf/unsimulated/floor{ icon_state = "grass1"; name = "grass" }, /area/centcom/holding) -"aEQ" = ( +"aEa" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -13569,34 +13552,34 @@ dir = 8 }, /area/centcom/holding) -"aER" = ( +"aEb" = ( /turf/unsimulated/floor{ icon_state = "bot" }, /area/centcom/holding) -"aEV" = ( +"aEc" = ( /obj/structure/bed/chair, /obj/effect/landmark{ name = "endgame_exit" }, /turf/unsimulated/beach/sand, /area/beach) -"aEW" = ( +"aEd" = ( /mob/living/simple_animal/crab/Coffee, /turf/unsimulated/beach/sand, /area/beach) -"aEX" = ( +"aEe" = ( /turf/unsimulated/floor{ icon_state = "warnplate"; dir = 10 }, /area/centcom/ferry) -"aEY" = ( +"aEf" = ( /turf/unsimulated/floor{ icon_state = "warnplate" }, /area/centcom/ferry) -"aEZ" = ( +"aEg" = ( /obj/machinery/door/airlock/external{ frequency = 1380; glass = 1380; @@ -13610,30 +13593,30 @@ dir = 5 }, /area/centcom/ferry) -"aFa" = ( +"aEh" = ( /obj/structure/grille, /obj/structure/window/shuttle, /turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"aFe" = ( +"aEi" = ( /obj/item/clothing/head/collectable/paper, /turf/unsimulated/beach/sand, /area/beach) -"aFf" = ( +"aEj" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; name = "shuttle bay blast door" }, /area/centcom/ferry) -"aFg" = ( +"aEk" = ( /turf/simulated/shuttle/wall, /area/shuttle/transport1/centcom) -"aFh" = ( +"aEl" = ( /obj/structure/window/shuttle, /obj/structure/grille, /turf/simulated/shuttle/plating, /area/shuttle/transport1/centcom) -"aFi" = ( +"aEm" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -13644,14 +13627,14 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aFj" = ( +"aEn" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_r"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/transport1/centcom) -"aFk" = ( +"aEo" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -13661,14 +13644,14 @@ name = "grass" }, /area/centcom/holding) -"aFl" = ( +"aEp" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aFm" = ( +"aEq" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -13677,7 +13660,7 @@ dir = 4 }, /area/centcom/holding) -"aFn" = ( +"aEr" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -13688,23 +13671,23 @@ name = "grass" }, /area/centcom/holding) -"aFq" = ( +"aEs" = ( /turf/unsimulated/floor{ icon_state = "sandwater" }, /area/beach) -"aFr" = ( +"aEt" = ( /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/template_noop) -"aFs" = ( +"aEu" = ( /obj/item/weapon/shovel, /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/template_noop) -"aFt" = ( +"aEv" = ( /obj/machinery/computer/shuttle_control{ req_access = list(101); shuttle_tag = "Centcom" @@ -13714,21 +13697,21 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aFu" = ( +"aEw" = ( /obj/structure/bed/chair, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aFv" = ( +"aEx" = ( /obj/structure/bed/chair, /obj/machinery/light{ dir = 1 }, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aFw" = ( +"aEy" = ( /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aFx" = ( +"aEz" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13738,14 +13721,14 @@ }, /turf/unsimulated/floor, /area/shuttle/transport1/centcom) -"aFy" = ( +"aEA" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/transport1/centcom) -"aFz" = ( +"aEB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -13755,7 +13738,7 @@ }, /turf/unsimulated/wall/riveted, /area/centcom/ferry) -"aFA" = ( +"aEC" = ( /obj/machinery/door/airlock/external{ name = "Arrivals Bar Airlock" }, @@ -13769,7 +13752,7 @@ dir = 5 }, /area/centcom/ferry) -"aFB" = ( +"aED" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -13778,38 +13761,38 @@ dir = 4 }, /area/centcom/holding) -"aFE" = ( +"aEE" = ( /turf/unsimulated/beach/coastline{ density = 1; opacity = 1 }, /area/beach) -"aFF" = ( +"aEF" = ( /turf/unsimulated/beach/coastline, /area/beach) -"aFG" = ( +"aEG" = ( /obj/item/weapon/coin/gold, /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/template_noop) -"aFH" = ( +"aEH" = ( /obj/effect/decal/remains, /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/template_noop) -"aFI" = ( +"aEI" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aFJ" = ( +"aEJ" = ( /obj/machinery/door/unpowered/shuttle, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aFK" = ( +"aEK" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 4 @@ -13818,28 +13801,28 @@ name = "plating" }, /area/centcom/ferry) -"aFL" = ( +"aEL" = ( /obj/structure/bed/chair/comfy/brown, /turf/unsimulated/floor{ dir = 9; icon_state = "carpetside" }, /area/centcom/holding) -"aFM" = ( +"aEM" = ( /obj/structure/bed/chair/comfy/brown, /turf/unsimulated/floor{ dir = 1; icon_state = "carpetside" }, /area/centcom/holding) -"aFN" = ( +"aEN" = ( /obj/structure/bed/chair/comfy/brown, /turf/unsimulated/floor{ dir = 5; icon_state = "carpetside" }, /area/centcom/holding) -"aFO" = ( +"aEO" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 1 @@ -13848,12 +13831,12 @@ icon_state = "wood" }, /area/centcom/holding) -"aFP" = ( +"aEP" = ( /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/holding) -"aFQ" = ( +"aEQ" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -13862,7 +13845,7 @@ dir = 1 }, /area/centcom/holding) -"aFR" = ( +"aER" = ( /obj/machinery/door/airlock/glass{ name = "Arrivals Processing" }, @@ -13870,7 +13853,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aFS" = ( +"aES" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Arrivals East" }, @@ -13878,14 +13861,14 @@ icon_state = "floor" }, /area/centcom/holding) -"aFT" = ( +"aET" = ( /turf/unsimulated/floor{ dir = 4; heat_capacity = 1; icon_state = "warning" }, /area/centcom/holding) -"aFU" = ( +"aEU" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -13899,13 +13882,13 @@ dir = 5 }, /area/centcom/holding) -"aFV" = ( +"aEV" = ( /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 }, /area/centcom/holding) -"aFW" = ( +"aEW" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -13922,16 +13905,16 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aFY" = ( +"aEX" = ( /turf/unsimulated/beach/water{ density = 1; opacity = 1 }, /area/beach) -"aFZ" = ( +"aEY" = ( /turf/unsimulated/beach/water, /area/beach) -"aGa" = ( +"aEZ" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "centcom_shuttle"; @@ -13942,38 +13925,38 @@ /obj/machinery/light, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aGb" = ( +"aFa" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aGc" = ( +"aFb" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/light, /turf/simulated/shuttle/floor, /area/shuttle/transport1/centcom) -"aGd" = ( +"aFc" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "carpetside" }, /area/centcom/holding) -"aGe" = ( +"aFd" = ( /turf/unsimulated/floor{ dir = 2; icon_state = "carpetsymbol" }, /area/centcom/holding) -"aGf" = ( +"aFe" = ( /turf/unsimulated/floor{ dir = 4; icon_state = "carpetside" }, /area/centcom/holding) -"aGg" = ( +"aFf" = ( /obj/machinery/door/airlock/glass{ name = "Arrivals Bar" }, @@ -13981,20 +13964,20 @@ icon_state = "floor" }, /area/centcom/holding) -"aGk" = ( +"aFg" = ( /obj/machinery/light/spot, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/ferry) -"aGl" = ( +"aFh" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion_l"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/transport1/centcom) -"aGm" = ( +"aFi" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -14003,7 +13986,7 @@ icon_state = "carpetside" }, /area/centcom/holding) -"aGn" = ( +"aFj" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -14012,7 +13995,7 @@ icon_state = "carpetside" }, /area/centcom/holding) -"aGo" = ( +"aFk" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -14021,7 +14004,7 @@ icon_state = "carpetside" }, /area/centcom/holding) -"aGp" = ( +"aFl" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -14029,12 +14012,12 @@ icon_state = "greencorner" }, /area/centcom/holding) -"aGq" = ( +"aFm" = ( /turf/unsimulated/floor{ icon_state = "warning" }, /area/centcom/holding) -"aGr" = ( +"aFn" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "centcom_dock"; @@ -14049,7 +14032,7 @@ icon_state = "warning" }, /area/centcom/holding) -"aGs" = ( +"aFo" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14067,7 +14050,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGt" = ( +"aFp" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14081,7 +14064,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGu" = ( +"aFq" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14090,13 +14073,13 @@ dir = 8 }, /area/centcom/holding) -"aGv" = ( +"aFr" = ( /obj/machinery/hologram/holopad, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aGw" = ( +"aFs" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /obj/machinery/status_display{ layer = 4; @@ -14107,13 +14090,13 @@ name = "plating" }, /area/centcom/holding) -"aGx" = ( +"aFt" = ( /obj/machinery/porta_turret/crescent, /turf/unsimulated/floor{ icon_state = "bot" }, /area/centcom/control) -"aGy" = ( +"aFu" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -14121,7 +14104,7 @@ }, /turf/unsimulated/wall/riveted, /area/centcom/holding) -"aGz" = ( +"aFv" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 @@ -14130,7 +14113,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGA" = ( +"aFw" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Bar Center" }, @@ -14138,7 +14121,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGB" = ( +"aFx" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -14148,13 +14131,13 @@ icon_state = "wood" }, /area/centcom/holding) -"aGC" = ( +"aFy" = ( /obj/machinery/hologram/holopad, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/holding) -"aGD" = ( +"aFz" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14167,21 +14150,21 @@ dir = 8 }, /area/centcom/holding) -"aGE" = ( +"aFA" = ( /turf/unsimulated/floor{ icon_state = "warning"; dir = 1; heat_capacity = 1 }, /area/centcom/holding) -"aGF" = ( +"aFB" = ( /turf/unsimulated/floor{ dir = 5; heat_capacity = 1; icon_state = "warning" }, /area/centcom/holding) -"aGG" = ( +"aFC" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 @@ -14191,7 +14174,7 @@ dir = 2 }, /area/centcom/holding) -"aGH" = ( +"aFD" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 @@ -14201,7 +14184,7 @@ dir = 2 }, /area/centcom/holding) -"aGI" = ( +"aFE" = ( /obj/machinery/computer/cryopod{ density = 0; layer = 3.3; @@ -14216,14 +14199,14 @@ dir = 2 }, /area/centcom/holding) -"aGJ" = ( +"aFF" = ( /obj/machinery/cryopod, /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/holding) -"aGK" = ( +"aFG" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 @@ -14234,14 +14217,14 @@ dir = 2 }, /area/centcom/holding) -"aGL" = ( +"aFH" = ( /obj/structure/cryofeed, /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/holding) -"aGM" = ( +"aFI" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 4 @@ -14250,7 +14233,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGN" = ( +"aFJ" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14259,7 +14242,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGO" = ( +"aFK" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14268,7 +14251,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGP" = ( +"aFL" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 8 @@ -14277,7 +14260,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGQ" = ( +"aFM" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14286,7 +14269,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aGR" = ( +"aFN" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14295,14 +14278,14 @@ icon_state = "wood" }, /area/centcom/holding) -"aGS" = ( +"aFO" = ( /obj/machinery/vending/coffee, /turf/unsimulated/floor{ icon_state = "green"; dir = 8 }, /area/centcom/holding) -"aGV" = ( +"aFP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14314,7 +14297,7 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aGW" = ( +"aFQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14324,7 +14307,7 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aGX" = ( +"aFR" = ( /obj/structure/sign/double/barsign, /obj/structure/grille, /obj/structure/window/reinforced, @@ -14335,7 +14318,7 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aGY" = ( +"aFS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14348,16 +14331,16 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aGZ" = ( +"aFT" = ( /turf/unsimulated/wall/riveted, /area/syndicate_mothership/raider_base) -"aHa" = ( +"aFU" = ( /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/holding) -"aHb" = ( +"aFV" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14366,7 +14349,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHc" = ( +"aFW" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14375,7 +14358,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHd" = ( +"aFX" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14384,7 +14367,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHe" = ( +"aFY" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14393,7 +14376,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHf" = ( +"aFZ" = ( /turf/unsimulated/floor{ icon_state = "wood" }, @@ -14403,20 +14386,20 @@ icon_state = "siding2" }, /area/centcom/holding) -"aHg" = ( +"aGa" = ( /obj/machinery/vending/cigarette, /turf/unsimulated/floor{ icon_state = "green"; dir = 10 }, /area/centcom/holding) -"aHh" = ( +"aGb" = ( /turf/unsimulated/floor{ icon_state = "greencorner"; dir = 8 }, /area/centcom/holding) -"aHi" = ( +"aGc" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -14433,7 +14416,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aHk" = ( +"aGd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14445,7 +14428,7 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aHl" = ( +"aGe" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14455,7 +14438,7 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aHm" = ( +"aGf" = ( /obj/machinery/vending/cigarette{ name = "hacked cigarette machine"; prices = list(); @@ -14467,20 +14450,20 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHn" = ( +"aGg" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHo" = ( +"aGh" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHp" = ( +"aGi" = ( /obj/structure/table/wood, /obj/machinery/chemical_dispenser/bar_alc/full, /turf/unsimulated/floor{ @@ -14488,7 +14471,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHq" = ( +"aGj" = ( /obj/structure/table/wood, /obj/machinery/chemical_dispenser/bar_soft/full, /obj/machinery/light{ @@ -14500,21 +14483,21 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHr" = ( +"aGk" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHs" = ( +"aGl" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/syndicate_mothership/raider_base) -"aHt" = ( +"aGm" = ( /obj/structure/sink{ pixel_y = 11 }, @@ -14526,7 +14509,7 @@ dir = 2 }, /area/syndicate_mothership/raider_base) -"aHu" = ( +"aGn" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower, /obj/item/weapon/soap/syndie, @@ -14535,14 +14518,14 @@ dir = 2 }, /area/syndicate_mothership/raider_base) -"aHv" = ( +"aGo" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/holding) -"aHw" = ( +"aGp" = ( /turf/unsimulated/floor{ icon_state = "wood" }, @@ -14551,7 +14534,7 @@ icon_state = "siding4" }, /area/centcom/holding) -"aHx" = ( +"aGq" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14560,11 +14543,11 @@ icon_state = "grimy" }, /area/centcom/holding) -"aHy" = ( +"aGr" = ( /obj/structure/sign/greencross, /turf/unsimulated/wall/riveted, /area/centcom/holding) -"aHz" = ( +"aGs" = ( /obj/machinery/door/airlock/glass_medical{ name = "Arrivals Medbay" }, @@ -14572,7 +14555,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aHD" = ( +"aGt" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14584,21 +14567,21 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aHE" = ( +"aGu" = ( /obj/item/weapon/broken_bottle, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHF" = ( +"aGv" = ( /obj/structure/table/wood, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aHG" = ( +"aGw" = ( /obj/effect/decal/cleanable/blood, /obj/machinery/light/small{ dir = 8 @@ -14608,13 +14591,13 @@ dir = 2 }, /area/syndicate_mothership/raider_base) -"aHH" = ( +"aGx" = ( /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/syndicate_mothership/raider_base) -"aHI" = ( +"aGy" = ( /obj/item/weapon/mop, /obj/structure/mopbucket, /turf/unsimulated/floor{ @@ -14622,10 +14605,10 @@ dir = 2 }, /area/syndicate_mothership/raider_base) -"aHJ" = ( +"aGz" = ( /turf/simulated/mineral, /area/syndicate_mothership/raider_base) -"aHK" = ( +"aGA" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14634,7 +14617,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHL" = ( +"aGB" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14643,7 +14626,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHM" = ( +"aGC" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14652,7 +14635,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHN" = ( +"aGD" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14661,7 +14644,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aHO" = ( +"aGE" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14675,30 +14658,30 @@ icon_state = "grimy" }, /area/centcom/holding) -"aHP" = ( +"aGF" = ( /turf/unsimulated/floor{ icon_state = "grimy" }, /area/centcom/holding) -"aHQ" = ( +"aGG" = ( /obj/machinery/atmospherics/unary/cryo_cell, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aHR" = ( +"aGH" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/oxygen/prechilled, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aHS" = ( +"aGI" = ( /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/holding) -"aHT" = ( +"aGJ" = ( /obj/machinery/vending/wallmed1{ name = "Emergency NanoMed"; pixel_x = 0; @@ -14709,25 +14692,25 @@ icon_state = "whitegreencorner" }, /area/centcom/holding) -"aHU" = ( +"aGK" = ( /obj/structure/bed/roller, /turf/unsimulated/floor{ dir = 4; icon_state = "whitegreenfull" }, /area/centcom/holding) -"aHV" = ( +"aGL" = ( /turf/unsimulated/floor{ icon_state = "green" }, /area/centcom/holding) -"aHW" = ( +"aGM" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 6 }, /area/centcom/holding) -"aHX" = ( +"aGN" = ( /obj/structure/closet/walllocker/emerglocker{ pixel_x = -28 }, @@ -14735,7 +14718,7 @@ icon_state = "floor2" }, /area/shuttle/escape/centcom) -"aHY" = ( +"aGO" = ( /obj/structure/closet/hydrant{ pixel_x = 30; pixel_y = 0 @@ -14744,7 +14727,7 @@ icon_state = "floor2" }, /area/shuttle/escape/centcom) -"aHZ" = ( +"aGP" = ( /obj/machinery/atmospherics/unary/cryo_cell{ layer = 3.3 }, @@ -14752,26 +14735,26 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aIb" = ( +"aGQ" = ( /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aIg" = ( +"aGR" = ( /obj/item/weapon/stool/padded, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aIh" = ( +"aGS" = ( /obj/effect/decal/cleanable/ash, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aIi" = ( +"aGT" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/glass/rag, /turf/unsimulated/floor{ @@ -14779,7 +14762,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aIj" = ( +"aGU" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/drinkingglasses, /turf/unsimulated/floor{ @@ -14787,7 +14770,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aIk" = ( +"aGV" = ( /obj/machinery/door/airlock/hatch{ req_access = list(150) }, @@ -14796,19 +14779,19 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aIl" = ( +"aGW" = ( /obj/structure/closet/crate/loot, /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aIm" = ( +"aGX" = ( /obj/vehicle/bike, /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aIn" = ( +"aGY" = ( /obj/vehicle/bike, /obj/machinery/light{ icon_state = "tube1"; @@ -14818,12 +14801,12 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aIo" = ( +"aGZ" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aIp" = ( +"aHa" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14832,7 +14815,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aIq" = ( +"aHb" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14841,7 +14824,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aIr" = ( +"aHc" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14850,7 +14833,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aIs" = ( +"aHd" = ( /obj/structure/table/wood{ dir = 5 }, @@ -14859,7 +14842,7 @@ icon_state = "wood" }, /area/centcom/holding) -"aIt" = ( +"aHe" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -14869,13 +14852,13 @@ icon_state = "whitegreencorner" }, /area/centcom/holding) -"aIu" = ( +"aHf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/holding) -"aIv" = ( +"aHg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -14884,7 +14867,7 @@ icon_state = "white" }, /area/centcom/holding) -"aIw" = ( +"aHh" = ( /obj/machinery/door/airlock/centcom{ name = "Aurora II Prepatory Wing"; opacity = 1; @@ -14894,7 +14877,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aIE" = ( +"aHi" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14907,7 +14890,7 @@ icon_state = "plating" }, /area/syndicate_mothership/raider_base) -"aIF" = ( +"aHj" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -14919,7 +14902,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aIG" = ( +"aHk" = ( /obj/effect/decal/cleanable/vomit, /obj/machinery/light{ dir = 1; @@ -14931,7 +14914,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aIH" = ( +"aHl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/vending/cola{ name = "hacked Robust Softdrinks"; @@ -14942,13 +14925,13 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aII" = ( +"aHm" = ( /obj/effect/decal/cleanable/dirt, /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aIJ" = ( +"aHn" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -14959,7 +14942,7 @@ dir = 9 }, /area/centcom/holding) -"aIK" = ( +"aHo" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -14983,13 +14966,13 @@ dir = 5 }, /area/centcom/holding) -"aIL" = ( +"aHp" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 2 }, /area/centcom/holding) -"aIM" = ( +"aHq" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15000,7 +14983,7 @@ dir = 9 }, /area/centcom/holding) -"aIN" = ( +"aHr" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15011,7 +14994,7 @@ dir = 1 }, /area/centcom/holding) -"aIO" = ( +"aHs" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15022,7 +15005,7 @@ dir = 5 }, /area/centcom/holding) -"aIP" = ( +"aHt" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15033,7 +15016,7 @@ dir = 9 }, /area/centcom/holding) -"aIQ" = ( +"aHu" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15050,7 +15033,7 @@ dir = 1 }, /area/centcom/holding) -"aIR" = ( +"aHv" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15060,7 +15043,7 @@ dir = 5 }, /area/centcom/holding) -"aIS" = ( +"aHw" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15070,7 +15053,7 @@ dir = 9 }, /area/centcom/holding) -"aIT" = ( +"aHx" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15081,13 +15064,13 @@ dir = 5 }, /area/centcom/holding) -"aIU" = ( +"aHy" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "wood" }, /area/centcom/holding) -"aIV" = ( +"aHz" = ( /obj/structure/closet/secure_closet/bar{ req_access = list(25) }, @@ -15095,7 +15078,7 @@ icon_state = "grimy" }, /area/centcom/holding) -"aIW" = ( +"aHA" = ( /obj/structure/table/wood{ dir = 5 }, @@ -15105,7 +15088,7 @@ icon_state = "grimy" }, /area/centcom/holding) -"aIX" = ( +"aHB" = ( /obj/structure/table/wood{ dir = 5 }, @@ -15114,7 +15097,7 @@ icon_state = "grimy" }, /area/centcom/holding) -"aIY" = ( +"aHC" = ( /obj/structure/table/wood{ dir = 5 }, @@ -15123,7 +15106,7 @@ icon_state = "grimy" }, /area/centcom/holding) -"aIZ" = ( +"aHD" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -15133,19 +15116,19 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aJa" = ( +"aHE" = ( /turf/unsimulated/floor{ dir = 2; icon_state = "whitegreencorner" }, /area/centcom/holding) -"aJb" = ( +"aHF" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "whitegreencorner" }, /area/centcom/holding) -"aJc" = ( +"aHG" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 28; pixel_y = 0 @@ -15155,49 +15138,49 @@ icon_state = "whitegreencorner" }, /area/centcom/holding) -"aJd" = ( +"aHH" = ( /obj/structure/banner/unmovable, /turf/unsimulated/floor{ icon_state = "green"; dir = 9 }, /area/centcom/spawning) -"aJe" = ( +"aHI" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 1 }, /area/centcom/spawning) -"aJf" = ( +"aHJ" = ( /obj/structure/banner/unmovable, /turf/unsimulated/floor{ icon_state = "green"; dir = 5 }, /area/centcom/spawning) -"aJg" = ( +"aHK" = ( /turf/unsimulated/wall/riveted, /area/centcom/spawning) -"aJh" = ( +"aHL" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"aJj" = ( +"aHM" = ( /obj/machinery/hologram/holopad, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aJk" = ( +"aHN" = ( /obj/structure/bed/roller, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aJm" = ( +"aHO" = ( /obj/machinery/light/small{ dir = 1 }, @@ -15205,7 +15188,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aJn" = ( +"aHP" = ( /obj/structure/table/standard, /obj/random/medical, /turf/unsimulated/floor{ @@ -15213,25 +15196,25 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aJo" = ( +"aHQ" = ( /turf/unsimulated/floor{ icon_state = "warnwhitecorner"; dir = 8 }, /area/centcom/holding) -"aJp" = ( +"aHR" = ( /turf/unsimulated/floor{ icon_state = "warnwhite"; dir = 1 }, /area/centcom/holding) -"aJq" = ( +"aHS" = ( /turf/unsimulated/floor{ icon_state = "warnwhitecorner"; dir = 4 }, /area/centcom/holding) -"aJr" = ( +"aHT" = ( /obj/structure/table/standard, /obj/random/plushie, /turf/unsimulated/floor{ @@ -15239,7 +15222,7 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aJs" = ( +"aHU" = ( /obj/machinery/door/airlock/glass{ name = "NMSS Odin Cryogenic Storage" }, @@ -15248,13 +15231,13 @@ icon_state = "whitegreenfull" }, /area/centcom/holding) -"aJt" = ( +"aHV" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/holding) -"aJu" = ( +"aHW" = ( /obj/machinery/door/airlock/glass{ name = "NMSS Odin Sports Megacenter" }, @@ -15262,7 +15245,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aJv" = ( +"aHX" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = 5; @@ -15282,25 +15265,25 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aJw" = ( +"aHY" = ( /turf/unsimulated/floor{ dir = 6; icon_state = "whitegreen" }, /area/centcom/holding) -"aJx" = ( +"aHZ" = ( /turf/unsimulated/floor{ dir = 10; icon_state = "whitegreen" }, /area/centcom/holding) -"aJy" = ( +"aIa" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "whitehall" }, /area/centcom/holding) -"aJz" = ( +"aIb" = ( /obj/machinery/sleeper{ icon_state = "sleeper_0"; dir = 8 @@ -15313,18 +15296,18 @@ icon_state = "floor" }, /area/centcom/holding) -"aJA" = ( +"aIc" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 8 }, /area/centcom/spawning) -"aJB" = ( +"aId" = ( /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/spawning) -"aJC" = ( +"aIe" = ( /obj/structure/sign/directions/medical{ dir = 1; icon_state = "direction_med"; @@ -15347,11 +15330,11 @@ dir = 4 }, /area/centcom/spawning) -"aJD" = ( +"aIf" = ( /obj/structure/shuttle/engine/propulsion, -/turf/template_noop, +/turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"aJE" = ( +"aIg" = ( /obj/machinery/sleeper{ dir = 4 }, @@ -15359,7 +15342,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aJG" = ( +"aIh" = ( /obj/machinery/optable, /obj/item/organ/stack, /obj/effect/decal/cleanable/blood/xeno, @@ -15370,14 +15353,14 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aJH" = ( +"aIi" = ( /obj/effect/decal/cleanable/generic, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aJI" = ( +"aIj" = ( /obj/item/weapon/stool/padded, /obj/effect/landmark{ name = "voxstart" @@ -15387,7 +15370,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aJJ" = ( +"aIk" = ( /obj/structure/table/wood, /obj/item/weapon/material/ashtray, /turf/unsimulated/floor{ @@ -15395,7 +15378,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aJK" = ( +"aIl" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/food/drinks/bottle/rum, /turf/unsimulated/floor{ @@ -15403,7 +15386,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aJL" = ( +"aIm" = ( /obj/machinery/door/airlock/hatch{ req_access = list(150) }, @@ -15411,7 +15394,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aJM" = ( +"aIn" = ( /obj/structure/closet/crate/loot, /obj/machinery/light{ dir = 8 @@ -15420,7 +15403,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aJN" = ( +"aIo" = ( /obj/random/vendor, /obj/machinery/light{ dir = 4; @@ -15430,50 +15413,50 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aJO" = ( +"aIp" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "whitegreen" }, /area/centcom/holding) -"aJP" = ( +"aIq" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/holding) -"aJQ" = ( +"aIr" = ( /turf/unsimulated/floor{ dir = 4; icon_state = "whitegreen" }, /area/centcom/holding) -"aJR" = ( +"aIs" = ( /turf/unsimulated/floor{ dir = 9; icon_state = "whitegreen" }, /area/centcom/holding) -"aJS" = ( +"aIt" = ( /turf/unsimulated/floor{ icon_state = "whitegreen"; dir = 1 }, /area/centcom/holding) -"aJT" = ( +"aIu" = ( /turf/unsimulated/floor{ dir = 5; icon_state = "whitegreen" }, /area/centcom/holding) -"aJU" = ( +"aIv" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 1 }, /area/centcom/holding) -"aJV" = ( +"aIw" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Medical"; dir = 4 @@ -15483,20 +15466,20 @@ icon_state = "whitegreencorner" }, /area/centcom/holding) -"aJW" = ( +"aIx" = ( /obj/machinery/hologram/holopad, /turf/unsimulated/floor{ dir = 9; icon_state = "whitegreen" }, /area/centcom/holding) -"aJX" = ( +"aIy" = ( /turf/unsimulated/floor{ dir = 1; icon_state = "whitegreencorner" }, /area/centcom/holding) -"aJY" = ( +"aIz" = ( /obj/machinery/sleeper{ icon_state = "sleeper_0"; dir = 8 @@ -15505,7 +15488,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aJZ" = ( +"aIA" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -15515,7 +15498,7 @@ dir = 8 }, /area/centcom/spawning) -"aKa" = ( +"aIB" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -15525,7 +15508,7 @@ dir = 4 }, /area/centcom/spawning) -"aKb" = ( +"aIC" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15536,7 +15519,7 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"aKd" = ( +"aID" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15546,18 +15529,18 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"aKe" = ( +"aIE" = ( /obj/item/organ/xenos/eggsac, /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKf" = ( +"aIF" = ( /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKg" = ( +"aIG" = ( /obj/structure/mirror/raider{ pixel_x = 0; pixel_y = 28 @@ -15566,14 +15549,14 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKh" = ( +"aIH" = ( /obj/item/clothing/head/philosopher_wig, /obj/effect/decal/cleanable/cobweb2, /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKi" = ( +"aII" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, /obj/item/weapon/deck/cards, @@ -15582,7 +15565,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKj" = ( +"aIJ" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, /obj/item/weapon/reagent_containers/food/condiment/peppermill{ @@ -15597,7 +15580,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKk" = ( +"aIK" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; prices = list() @@ -15607,7 +15590,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKl" = ( +"aIL" = ( /obj/machinery/door/airlock/hatch{ name = "Warehouse"; req_access = list(150) @@ -15616,7 +15599,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aKm" = ( +"aIM" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -15626,7 +15609,7 @@ dir = 8 }, /area/centcom/holding) -"aKn" = ( +"aIN" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -15636,7 +15619,7 @@ dir = 4 }, /area/centcom/holding) -"aKo" = ( +"aIO" = ( /obj/structure/table/standard, /obj/item/weapon/FixOVein{ pixel_x = -6; @@ -15647,7 +15630,7 @@ icon_state = "whitecorner" }, /area/centcom/holding) -"aKp" = ( +"aIP" = ( /obj/structure/table/standard, /obj/item/weapon/cautery{ pixel_y = 4 @@ -15660,7 +15643,7 @@ icon_state = "whitehall" }, /area/centcom/holding) -"aKq" = ( +"aIQ" = ( /obj/structure/table/standard, /obj/item/weapon/retractor{ pixel_x = 0; @@ -15677,7 +15660,7 @@ icon_state = "whitehall" }, /area/centcom/holding) -"aKr" = ( +"aIR" = ( /obj/structure/table/standard, /obj/item/weapon/bonesetter, /obj/item/weapon/bonegel{ @@ -15689,7 +15672,7 @@ icon_state = "whitehall" }, /area/centcom/holding) -"aKs" = ( +"aIS" = ( /obj/structure/table/standard, /obj/item/weapon/surgicaldrill, /obj/item/weapon/circular_saw, @@ -15698,19 +15681,19 @@ dir = 8 }, /area/centcom/holding) -"aKt" = ( +"aIT" = ( /turf/unsimulated/floor{ dir = 4; icon_state = "whitegreencorner" }, /area/centcom/holding) -"aKu" = ( +"aIU" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/centcom/spawning) -"aKw" = ( +"aIV" = ( /obj/structure/table/rack, /obj/item/clothing/under/vox/vox_casual, /obj/item/clothing/shoes/magboots/vox, @@ -15721,7 +15704,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKx" = ( +"aIW" = ( /obj/item/tape/engineering{ icon_state = "engineering_v" }, @@ -15729,7 +15712,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKy" = ( +"aIX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light, /turf/unsimulated/floor{ @@ -15737,7 +15720,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKz" = ( +"aIY" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, /obj/item/pizzabox/meat, @@ -15746,7 +15729,7 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKA" = ( +"aIZ" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, /obj/item/weapon/dice, @@ -15755,34 +15738,34 @@ icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKB" = ( +"aJa" = ( /obj/machinery/light, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKC" = ( +"aJb" = ( /obj/item/weapon/cigbutt, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKD" = ( +"aJc" = ( /obj/machinery/vending/sovietsoda, /turf/unsimulated/floor{ dir = 8; icon_state = "wood" }, /area/syndicate_mothership/raider_base) -"aKE" = ( +"aJd" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aKF" = ( +"aJe" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/large_stock_marker, @@ -15790,26 +15773,26 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aKG" = ( +"aJf" = ( /turf/unsimulated/floor{ dir = 0; icon_state = "whitegreen" }, /area/centcom/holding) -"aKH" = ( +"aJg" = ( /obj/machinery/light, /turf/unsimulated/floor{ dir = 0; icon_state = "whitegreen" }, /area/centcom/holding) -"aKI" = ( +"aJh" = ( /turf/unsimulated/floor{ icon_state = "whitehall"; dir = 4 }, /area/centcom/holding) -"aKJ" = ( +"aJi" = ( /obj/machinery/door/airlock/medical{ name = "Operating Theatre"; req_access = list(45) @@ -15818,7 +15801,7 @@ icon_state = "white" }, /area/centcom/holding) -"aKK" = ( +"aJj" = ( /obj/structure/table/rack, /obj/item/clothing/under/vox/vox_casual, /obj/item/clothing/shoes/magboots/vox, @@ -15832,13 +15815,13 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKL" = ( +"aJk" = ( /obj/effect/decal/remains/robot, /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aKM" = ( +"aJl" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 8 @@ -15851,7 +15834,7 @@ dir = 9 }, /area/centcom/holding) -"aKN" = ( +"aJm" = ( /obj/machinery/door/window/northleft{ name = "Women's Changing Room" }, @@ -15860,7 +15843,7 @@ dir = 1 }, /area/centcom/holding) -"aKO" = ( +"aJn" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 4 @@ -15873,7 +15856,7 @@ dir = 5 }, /area/centcom/holding) -"aKP" = ( +"aJo" = ( /obj/machinery/door/window/northright{ name = "Women's Changing Room" }, @@ -15882,7 +15865,7 @@ dir = 1 }, /area/centcom/holding) -"aKQ" = ( +"aJp" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 1 @@ -15896,7 +15879,7 @@ dir = 5 }, /area/centcom/holding) -"aKR" = ( +"aJq" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 8 @@ -15910,7 +15893,7 @@ dir = 9 }, /area/centcom/holding) -"aKS" = ( +"aJr" = ( /obj/machinery/door/window/northleft{ name = "Men's Changing Room" }, @@ -15919,7 +15902,7 @@ dir = 1 }, /area/centcom/holding) -"aKT" = ( +"aJs" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 4 @@ -15933,7 +15916,7 @@ dir = 5 }, /area/centcom/holding) -"aKU" = ( +"aJt" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 8 @@ -15947,7 +15930,7 @@ dir = 9 }, /area/centcom/holding) -"aKV" = ( +"aJu" = ( /obj/machinery/door/window/northright{ name = "Men's Changing Room" }, @@ -15956,39 +15939,39 @@ dir = 1 }, /area/centcom/holding) -"aKW" = ( +"aJv" = ( /obj/machinery/vending/coffee, /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/centcom/holding) -"aKX" = ( +"aJw" = ( /obj/structure/closet/secure_closet/medical2, /turf/unsimulated/floor{ icon_state = "escapecorner"; dir = 4 }, /area/centcom/holding) -"aKY" = ( +"aJx" = ( /turf/unsimulated/floor{ icon_state = "whitehall"; dir = 5 }, /area/centcom/holding) -"aKZ" = ( +"aJy" = ( /obj/machinery/optable, /turf/unsimulated/floor{ icon_state = "white" }, /area/centcom/holding) -"aLa" = ( +"aJz" = ( /turf/unsimulated/floor{ icon_state = "whitehall"; dir = 9 }, /area/centcom/holding) -"aLb" = ( +"aJA" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -16004,7 +15987,7 @@ dir = 1 }, /area/centcom/holding) -"aLc" = ( +"aJB" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/gloves{ pixel_x = 3; @@ -16019,7 +16002,7 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aLd" = ( +"aJC" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -16030,7 +16013,7 @@ icon_state = "bluefull" }, /area/centcom/spawning) -"aLe" = ( +"aJD" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -16039,7 +16022,7 @@ dir = 1 }, /area/centcom/spawning) -"aLf" = ( +"aJE" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -16053,7 +16036,7 @@ dir = 1 }, /area/centcom/spawning) -"aLg" = ( +"aJF" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -16064,7 +16047,7 @@ icon_state = "bluefull" }, /area/centcom/spawning) -"aLh" = ( +"aJG" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 8 @@ -16073,12 +16056,12 @@ name = "plating" }, /area/centcom/spawning) -"aLi" = ( +"aJH" = ( /turf/unsimulated/floor{ name = "plating" }, /area/centcom/spawning) -"aLj" = ( +"aJI" = ( /obj/machinery/light/spot{ icon_state = "tube1"; dir = 4 @@ -16087,7 +16070,7 @@ name = "plating" }, /area/centcom/spawning) -"aLk" = ( +"aJJ" = ( /obj/structure/table/rack, /obj/item/clothing/under/vox/vox_casual, /obj/item/clothing/shoes/magboots/vox, @@ -16098,13 +16081,13 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aLl" = ( +"aJK" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/unsimulated/floor{ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aLm" = ( +"aJL" = ( /obj/structure/table/rack, /obj/item/clothing/glasses/thermal/plain/monocle, /obj/item/clothing/glasses/thermal/plain/monocle, @@ -16113,7 +16096,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aLn" = ( +"aJM" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 @@ -16122,20 +16105,20 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aLo" = ( +"aJN" = ( /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/syndicate_mothership/raider_base) -"aLp" = ( +"aJO" = ( /obj/effect/decal/cleanable/cobweb2, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/syndicate_mothership/raider_base) -"aLq" = ( +"aJP" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 8 @@ -16145,7 +16128,7 @@ dir = 8 }, /area/centcom/holding) -"aLr" = ( +"aJQ" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 4 @@ -16155,7 +16138,7 @@ dir = 4 }, /area/centcom/holding) -"aLs" = ( +"aJR" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -16166,7 +16149,7 @@ dir = 4 }, /area/centcom/holding) -"aLt" = ( +"aJS" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 8 @@ -16176,7 +16159,7 @@ dir = 8 }, /area/centcom/holding) -"aLu" = ( +"aJT" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 4 @@ -16186,7 +16169,7 @@ dir = 4 }, /area/centcom/holding) -"aLv" = ( +"aJU" = ( /obj/structure/urinal{ pixel_y = 32 }, @@ -16195,7 +16178,7 @@ dir = 2 }, /area/centcom/holding) -"aLw" = ( +"aJV" = ( /obj/structure/mirror{ pixel_y = 32 }, @@ -16207,14 +16190,14 @@ dir = 2 }, /area/centcom/holding) -"aLx" = ( +"aJW" = ( /obj/machinery/vending/cigarette, /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/centcom/holding) -"aLy" = ( +"aJX" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/gloves{ pixel_x = 3; @@ -16226,13 +16209,13 @@ icon_state = "floor" }, /area/centcom/holding) -"aLz" = ( +"aJY" = ( /turf/unsimulated/floor{ icon_state = "escapecorner"; dir = 4 }, /area/centcom/holding) -"aLA" = ( +"aJZ" = ( /obj/machinery/computer/operating, /obj/machinery/light, /turf/unsimulated/floor{ @@ -16240,14 +16223,14 @@ icon_state = "whitehall" }, /area/centcom/holding) -"aLB" = ( +"aKa" = ( /obj/machinery/iv_drip, /turf/unsimulated/floor{ icon_state = "whitecorner"; dir = 1 }, /area/centcom/holding) -"aLC" = ( +"aKb" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/blood/OPlus{ pixel_x = 4; @@ -16269,7 +16252,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aLD" = ( +"aKc" = ( /obj/machinery/bodyscanner{ dir = 8; icon_state = "body_scanner_0" @@ -16278,7 +16261,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aLE" = ( +"aKd" = ( /obj/machinery/body_scanconsole{ icon_state = "body_scannerconsole"; dir = 8 @@ -16288,7 +16271,7 @@ dir = 4 }, /area/centcom/holding) -"aLF" = ( +"aKe" = ( /obj/structure/bed/roller, /obj/machinery/light, /turf/unsimulated/floor{ @@ -16296,7 +16279,7 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aLG" = ( +"aKf" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 2; @@ -16318,7 +16301,7 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aLH" = ( +"aKg" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ layer = 2.8; @@ -16336,7 +16319,7 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aLI" = ( +"aKh" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, @@ -16346,7 +16329,7 @@ icon_state = "whitegreen" }, /area/centcom/holding) -"aLJ" = ( +"aKi" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16355,7 +16338,7 @@ dir = 8 }, /area/centcom/spawning) -"aLK" = ( +"aKj" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16364,7 +16347,7 @@ dir = 6 }, /area/centcom/spawning) -"aLL" = ( +"aKk" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16372,7 +16355,7 @@ icon_state = "blue" }, /area/centcom/spawning) -"aLM" = ( +"aKl" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16381,7 +16364,7 @@ dir = 10 }, /area/centcom/spawning) -"aLN" = ( +"aKm" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -16390,21 +16373,21 @@ dir = 4 }, /area/centcom/spawning) -"aLO" = ( +"aKn" = ( /turf/simulated/shuttle/wall, /area/shuttle/arrival/centcom) -"aLP" = ( +"aKo" = ( /obj/structure/grille, /obj/structure/window/shuttle/crescent, /turf/simulated/shuttle/plating, /area/shuttle/arrival/centcom) -"aLQ" = ( +"aKp" = ( /turf/unsimulated/wall/fakepdoor{ dir = 1; name = "shuttle bay blast door" }, /area/centcom/spawning) -"aLR" = ( +"aKq" = ( /obj/structure/table/rack, /obj/item/clothing/under/vox/vox_robes, /obj/item/clothing/shoes/magboots/vox, @@ -16415,7 +16398,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aLS" = ( +"aKr" = ( /obj/structure/table/rack, /obj/item/weapon/gun/launcher/spikethrower, /obj/item/weapon/gun/launcher/spikethrower, @@ -16428,7 +16411,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aLT" = ( +"aKs" = ( /obj/machinery/light{ dir = 8 }, @@ -16437,7 +16420,7 @@ icon_state = "cult" }, /area/syndicate_mothership/raider_base) -"aLU" = ( +"aKt" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -16448,7 +16431,7 @@ icon_state = "cult" }, /area/syndicate_mothership/raider_base) -"aLV" = ( +"aKu" = ( /obj/machinery/light/small{ dir = 1 }, @@ -16457,7 +16440,7 @@ dir = 2 }, /area/centcom/holding) -"aLW" = ( +"aKv" = ( /obj/machinery/door/airlock/centcom{ name = "Unisex Restroom" }, @@ -16466,7 +16449,7 @@ dir = 2 }, /area/centcom/holding) -"aLX" = ( +"aKw" = ( /obj/structure/sign/directions/dock{ pixel_x = -32 }, @@ -16475,26 +16458,26 @@ dir = 8 }, /area/centcom/spawning) -"aLY" = ( +"aKx" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 4 }, /area/centcom/spawning) -"aLZ" = ( +"aKy" = ( /obj/machinery/door/airlock/centcom{ name = "To: Arrivals Deck" }, /turf/unsimulated/floor, /area/centcom/spawning) -"aMa" = ( +"aKz" = ( /obj/machinery/door/window/westright, /turf/unsimulated/floor{ icon_state = "blue"; dir = 8 }, /area/centcom/spawning) -"aMb" = ( +"aKA" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16503,7 +16486,7 @@ dir = 4 }, /area/centcom/spawning) -"aMc" = ( +"aKB" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16511,7 +16494,7 @@ icon_state = "bluefull" }, /area/centcom/spawning) -"aMd" = ( +"aKC" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16520,14 +16503,14 @@ dir = 8 }, /area/centcom/spawning) -"aMe" = ( +"aKD" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_l"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/arrival/centcom) -"aMf" = ( +"aKE" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -16539,48 +16522,48 @@ /obj/structure/closet/crate/trashcart, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMg" = ( +"aKF" = ( /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMh" = ( +"aKG" = ( /obj/machinery/light{ dir = 1 }, /obj/structure/closet/emcloset, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMi" = ( +"aKH" = ( /obj/structure/closet/emcloset, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMj" = ( +"aKI" = ( /obj/structure/closet/emcloset, /obj/machinery/camera/network/civilian_east{ c_tag = "Surface - Arrivals Shuttle" }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMk" = ( +"aKJ" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ dir = 1 }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMl" = ( +"aKK" = ( /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMm" = ( +"aKL" = ( /obj/machinery/light{ dir = 1 }, /obj/structure/closet/crate/trashcart, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMn" = ( +"aKM" = ( /obj/structure/table/rack, /obj/item/weapon/gun/launcher/spikethrower, /obj/item/weapon/gun/launcher/spikethrower, @@ -16589,7 +16572,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aMo" = ( +"aKN" = ( /obj/machinery/light{ dir = 8 }, @@ -16597,14 +16580,14 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aMp" = ( +"aKO" = ( /obj/structure/bed/chair, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/syndicate_mothership/raider_base) -"aMq" = ( +"aKP" = ( /obj/machinery/light{ dir = 4 }, @@ -16612,7 +16595,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aMr" = ( +"aKQ" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 8 @@ -16622,13 +16605,13 @@ dir = 10 }, /area/centcom/holding) -"aMs" = ( +"aKR" = ( /obj/machinery/light/spot, /turf/unsimulated/floor{ icon_state = "whitered" }, /area/centcom/holding) -"aMt" = ( +"aKS" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -16639,7 +16622,7 @@ dir = 6 }, /area/centcom/holding) -"aMu" = ( +"aKT" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 8 @@ -16649,13 +16632,13 @@ dir = 10 }, /area/centcom/holding) -"aMv" = ( +"aKU" = ( /obj/machinery/light/spot, /turf/unsimulated/floor{ icon_state = "whiteblue" }, /area/centcom/holding) -"aMw" = ( +"aKV" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/window/reinforced{ dir = 4 @@ -16665,7 +16648,7 @@ dir = 6 }, /area/centcom/holding) -"aMx" = ( +"aKW" = ( /obj/machinery/door/airlock/medical{ autoclose = 0; icon_state = "door_open"; @@ -16677,7 +16660,7 @@ dir = 2 }, /area/centcom/holding) -"aMy" = ( +"aKX" = ( /obj/machinery/light/small{ dir = 4 }, @@ -16686,7 +16669,7 @@ dir = 2 }, /area/centcom/holding) -"aMz" = ( +"aKY" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -16699,13 +16682,13 @@ dir = 8 }, /area/centcom/holding) -"aMA" = ( +"aKZ" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/spawning) -"aMB" = ( +"aLa" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket{ amount_per_transfer_from_this = 50 @@ -16715,7 +16698,7 @@ dir = 1 }, /area/centcom/spawning) -"aMC" = ( +"aLb" = ( /obj/structure/sink{ pixel_y = 26 }, @@ -16723,7 +16706,7 @@ icon_state = "dark" }, /area/centcom/spawning) -"aMD" = ( +"aLc" = ( /obj/structure/table/rack, /obj/item/device/lightreplacer/advanced, /obj/item/device/lightreplacer/advanced, @@ -16733,7 +16716,7 @@ dir = 1 }, /area/centcom/spawning) -"aME" = ( +"aLd" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16742,7 +16725,7 @@ dir = 5 }, /area/centcom/spawning) -"aMF" = ( +"aLe" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16751,7 +16734,7 @@ dir = 1 }, /area/centcom/spawning) -"aMG" = ( +"aLf" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -16760,14 +16743,14 @@ dir = 9 }, /area/centcom/spawning) -"aMH" = ( +"aLg" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "propulsion"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/arrival/centcom) -"aMI" = ( +"aLh" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -16783,19 +16766,19 @@ name = "plating" }, /area/shuttle/arrival/centcom) -"aMJ" = ( +"aLi" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMK" = ( +"aLj" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aML" = ( +"aLk" = ( /obj/structure/mainframe{ density = 0; desc = "The automated mainframe computer for the NSS Aurora autoshuttle."; @@ -16810,7 +16793,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aMM" = ( +"aLl" = ( /obj/structure/table/rack, /obj/item/clothing/under/vox/vox_robes, /obj/item/clothing/shoes/magboots/vox, @@ -16821,7 +16804,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aMN" = ( +"aLm" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/item/weapon/tank/nitrogen, /obj/machinery/light/small{ @@ -16833,7 +16816,7 @@ icon_state = "asteroid" }, /area/syndicate_mothership/raider_base) -"aMO" = ( +"aLn" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16846,7 +16829,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aMP" = ( +"aLo" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16856,7 +16839,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aMQ" = ( +"aLp" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16869,14 +16852,14 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aMR" = ( +"aLq" = ( /obj/machinery/computer/shuttle_control/multi/vox, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/syndicate_mothership/raider_base) -"aMS" = ( +"aLr" = ( /obj/machinery/button/remote/airlock{ id = "odin_stall"; name = "Door Bolt Control"; @@ -16895,7 +16878,7 @@ dir = 2 }, /area/centcom/holding) -"aMT" = ( +"aLs" = ( /obj/structure/window/basic{ dir = 8 }, @@ -16911,7 +16894,7 @@ dir = 2 }, /area/centcom/holding) -"aMU" = ( +"aLt" = ( /obj/structure/window/basic{ dir = 4 }, @@ -16928,7 +16911,7 @@ dir = 2 }, /area/centcom/holding) -"aMV" = ( +"aLu" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -16937,12 +16920,12 @@ dir = 10 }, /area/centcom/holding) -"aMW" = ( +"aLv" = ( /turf/unsimulated/floor{ icon_state = "greencorner" }, /area/centcom/holding) -"aMX" = ( +"aLw" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -16951,7 +16934,7 @@ dir = 6 }, /area/centcom/holding) -"aMY" = ( +"aLx" = ( /obj/item/weapon/mop, /obj/structure/mopbucket, /turf/unsimulated/floor{ @@ -16959,12 +16942,12 @@ dir = 1 }, /area/centcom/spawning) -"aMZ" = ( +"aLy" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/spawning) -"aNa" = ( +"aLz" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/vaurca/bfg{ desc = "For all your mopping needs! Guaranteed to get the stain out of ANYTHING!"; @@ -16978,7 +16961,7 @@ icon_state = "dark" }, /area/centcom/spawning) -"aNb" = ( +"aLA" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -16987,20 +16970,20 @@ icon_state = "bluefull" }, /area/centcom/spawning) -"aNc" = ( +"aLB" = ( /obj/structure/window/reinforced, /turf/unsimulated/floor{ icon_state = "blue" }, /area/centcom/spawning) -"aNd" = ( +"aLC" = ( /obj/structure/window/reinforced, /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "blue" }, /area/centcom/spawning) -"aNe" = ( +"aLD" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -17009,7 +16992,7 @@ icon_state = "bluefull" }, /area/centcom/spawning) -"aNf" = ( +"aLE" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -17022,11 +17005,11 @@ name = "plating" }, /area/shuttle/arrival/centcom) -"aNg" = ( +"aLF" = ( /obj/machinery/hologram/holopad, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aNh" = ( +"aLG" = ( /obj/structure/mainframe{ density = 0; desc = "The automated mainframe computer for the NSS Aurora autoshuttle."; @@ -17041,7 +17024,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aNi" = ( +"aLH" = ( /obj/machinery/status_display/arrivals_display{ pixel_x = 32 }, @@ -17054,7 +17037,7 @@ dir = 4 }, /area/centcom/spawning) -"aNj" = ( +"aLI" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -17068,7 +17051,7 @@ name = "plating" }, /area/shuttle/arrival/centcom) -"aNk" = ( +"aLJ" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "arrival_shuttle"; @@ -17091,7 +17074,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aNl" = ( +"aLK" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 4 @@ -17101,7 +17084,7 @@ }, /turf/template_noop, /area/syndicate_mothership/raider_base) -"aNm" = ( +"aLL" = ( /obj/machinery/door/airlock/external{ req_access = list(150) }, @@ -17109,7 +17092,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aNn" = ( +"aLM" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 8 @@ -17119,14 +17102,14 @@ }, /turf/template_noop, /area/syndicate_mothership/raider_base) -"aNo" = ( +"aLN" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"aNp" = ( +"aLO" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -17136,19 +17119,19 @@ icon_state = "dark" }, /area/centcom/holding) -"aNq" = ( +"aLP" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"aNr" = ( +"aLQ" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"aNs" = ( +"aLR" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -17158,7 +17141,7 @@ dir = 1 }, /area/centcom/holding) -"aNt" = ( +"aLS" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -17168,14 +17151,14 @@ dir = 4 }, /area/centcom/holding) -"aNu" = ( +"aLT" = ( /obj/structure/holostool, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 }, /area/centcom/holding) -"aNv" = ( +"aLU" = ( /obj/structure/holostool, /obj/structure/window/reinforced/holowindow{ dir = 4 @@ -17185,7 +17168,7 @@ dir = 5 }, /area/centcom/holding) -"aNw" = ( +"aLV" = ( /obj/structure/table/holotable, /obj/machinery/readybutton{ pixel_y = 0 @@ -17195,7 +17178,7 @@ dir = 9 }, /area/centcom/holding) -"aNx" = ( +"aLW" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/red, @@ -17211,7 +17194,7 @@ dir = 1 }, /area/centcom/holding) -"aNy" = ( +"aLX" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/red, @@ -17222,18 +17205,18 @@ dir = 1 }, /area/centcom/holding) -"aNz" = ( +"aLY" = ( /obj/structure/table/holotable, /turf/unsimulated/floor{ icon_state = "red"; dir = 5 }, /area/centcom/holding) -"aNA" = ( +"aLZ" = ( /obj/structure/sign/biohazard, /turf/unsimulated/wall/riveted, /area/centcom/spawning) -"aNB" = ( +"aMa" = ( /obj/machinery/door/airlock/centcom{ name = "Utility Closet"; opacity = 1; @@ -17244,7 +17227,7 @@ icon_state = "floor" }, /area/centcom/spawning) -"aNC" = ( +"aMb" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17256,7 +17239,7 @@ icon_state = "redfull" }, /area/centcom/spawning) -"aND" = ( +"aMc" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -17266,7 +17249,7 @@ dir = 1 }, /area/centcom/spawning) -"aNE" = ( +"aMd" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -17281,7 +17264,7 @@ dir = 1 }, /area/centcom/spawning) -"aNF" = ( +"aMe" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -17294,14 +17277,14 @@ icon_state = "redfull" }, /area/centcom/spawning) -"aNG" = ( +"aMf" = ( /obj/structure/shuttle/engine/propulsion{ icon_state = "burst_r"; dir = 8 }, /turf/simulated/shuttle/plating, /area/shuttle/arrival/centcom) -"aNH" = ( +"aMg" = ( /obj/machinery/light{ dir = 2; icon_state = "tube1"; @@ -17309,7 +17292,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aNI" = ( +"aMh" = ( /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 @@ -17317,7 +17300,7 @@ /obj/machinery/light, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aNJ" = ( +"aMi" = ( /obj/machinery/requests_console{ department = "Arrival shuttle"; pixel_y = -30 @@ -17325,20 +17308,20 @@ /obj/machinery/light, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aNK" = ( +"aMj" = ( /obj/machinery/light{ dir = 2 }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aNL" = ( +"aMk" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 4 }, /turf/template_noop, /area/syndicate_mothership/raider_base) -"aNM" = ( +"aMl" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17346,7 +17329,7 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aNN" = ( +"aMm" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -17354,51 +17337,51 @@ icon_state = "dark" }, /area/syndicate_mothership/raider_base) -"aNO" = ( +"aMn" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 8 }, /turf/template_noop, /area/syndicate_mothership/raider_base) -"aNP" = ( +"aMo" = ( /obj/machinery/door/airlock/glass, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aNQ" = ( +"aMp" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 8 }, /area/centcom/holding) -"aNR" = ( +"aMq" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 4 }, /area/centcom/holding) -"aNS" = ( +"aMr" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 9 }, /area/centcom/spawning) -"aNT" = ( +"aMs" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 1 }, /area/centcom/spawning) -"aNU" = ( +"aMt" = ( /obj/structure/banner, /turf/unsimulated/floor{ icon_state = "blue"; dir = 5 }, /area/centcom/spawning) -"aNV" = ( +"aMu" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17407,7 +17390,7 @@ icon_state = "red" }, /area/centcom/spawning) -"aNW" = ( +"aMv" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17416,7 +17399,7 @@ dir = 6 }, /area/centcom/spawning) -"aNX" = ( +"aMw" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17425,7 +17408,7 @@ dir = 2 }, /area/centcom/spawning) -"aNY" = ( +"aMx" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17434,7 +17417,7 @@ dir = 10 }, /area/centcom/spawning) -"aNZ" = ( +"aMy" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -17444,11 +17427,11 @@ dir = 4 }, /area/centcom/spawning) -"aOa" = ( +"aMz" = ( /obj/machinery/status_display/arrivals_display, /turf/simulated/shuttle/wall, /area/shuttle/arrival/centcom) -"aOb" = ( +"aMA" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -17459,7 +17442,7 @@ }, /turf/simulated/shuttle/floor, /area/shuttle/arrival/centcom) -"aOc" = ( +"aMB" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; dir = 2; @@ -17470,13 +17453,13 @@ icon_state = "dark" }, /area/centcom/holding) -"aOd" = ( +"aMC" = ( /obj/structure/window/reinforced/holowindow, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"aOe" = ( +"aMD" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Arrivals North"; dir = 8 @@ -17485,7 +17468,7 @@ icon_state = "dark" }, /area/centcom/holding) -"aOf" = ( +"aME" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Arrivals - Holding Cell"; dir = 4 @@ -17494,7 +17477,7 @@ icon_state = "dark" }, /area/centcom/holding) -"aOg" = ( +"aMF" = ( /obj/machinery/door/window/holowindoor{ name = "Red Team" }, @@ -17502,33 +17485,33 @@ icon_state = "dark" }, /area/centcom/holding) -"aOh" = ( +"aMG" = ( /obj/random/junk, /turf/unsimulated/floor{ icon_state = "blue"; dir = 8 }, /area/centcom/spawning) -"aOi" = ( +"aMH" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 4 }, /area/centcom/spawning) -"aOj" = ( +"aMI" = ( /obj/machinery/door/airlock/centcom{ name = "To: NMSS Odin Hab Complex" }, /turf/unsimulated/floor, /area/centcom/spawning) -"aOk" = ( +"aMJ" = ( /obj/machinery/door/window/westleft, /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/centcom/spawning) -"aOl" = ( +"aMK" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17537,7 +17520,7 @@ dir = 4 }, /area/centcom/spawning) -"aOm" = ( +"aML" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17545,7 +17528,7 @@ icon_state = "redfull" }, /area/centcom/spawning) -"aOn" = ( +"aMM" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17554,7 +17537,7 @@ icon_state = "red" }, /area/centcom/spawning) -"aOo" = ( +"aMN" = ( /obj/machinery/door/airlock/external{ frequency = 1380; icon_state = "door_locked"; @@ -17567,7 +17550,7 @@ name = "plating" }, /area/centcom/spawning) -"aOr" = ( +"aMO" = ( /obj/structure/window/reinforced/holowindow{ dir = 4 }, @@ -17575,19 +17558,19 @@ icon_state = "dark" }, /area/centcom/holding) -"aOs" = ( +"aMP" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 9 }, /area/centcom/holding) -"aOt" = ( +"aMQ" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 1 }, /area/centcom/holding) -"aOu" = ( +"aMR" = ( /obj/structure/window/reinforced/holowindow{ dir = 8 }, @@ -17595,17 +17578,17 @@ icon_state = "dark" }, /area/centcom/holding) -"aOv" = ( +"aMS" = ( /obj/structure/sign/greencross, /turf/unsimulated/wall/riveted, /area/centcom/spawning) -"aOw" = ( +"aMT" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 8 }, /area/centcom/spawning) -"aOx" = ( +"aMU" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -17615,24 +17598,24 @@ dir = 4 }, /area/centcom/spawning) -"aOy" = ( +"aMV" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 10 }, /area/centcom/spawning) -"aOz" = ( +"aMW" = ( /turf/unsimulated/floor{ icon_state = "green" }, /area/centcom/spawning) -"aOA" = ( +"aMX" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 6 }, /area/centcom/spawning) -"aOB" = ( +"aMY" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17641,7 +17624,7 @@ dir = 5 }, /area/centcom/spawning) -"aOC" = ( +"aMZ" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17650,7 +17633,7 @@ dir = 1 }, /area/centcom/spawning) -"aOD" = ( +"aNa" = ( /obj/effect/landmark{ name = "JoinLate" }, @@ -17659,22 +17642,22 @@ dir = 9 }, /area/centcom/spawning) -"aOE" = ( +"aNb" = ( /obj/machinery/megavendor, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/spawning) -"aOF" = ( +"aNc" = ( /obj/machinery/light/spot, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/spawning) -"aOG" = ( +"aNd" = ( /turf/simulated/wall/voxshuttle, /area/skipjack_station/start) -"aOH" = ( +"aNe" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1331; @@ -17683,7 +17666,7 @@ }, /turf/simulated/wall/voxshuttle, /area/skipjack_station/start) -"aOI" = ( +"aNf" = ( /obj/machinery/door/airlock/hatch{ frequency = 1331; icon_state = "door_closed"; @@ -17693,7 +17676,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aOJ" = ( +"aNg" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17709,7 +17692,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aOK" = ( +"aNh" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17722,7 +17705,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aOL" = ( +"aNi" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -17738,7 +17721,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aOM" = ( +"aNj" = ( /obj/machinery/door/airlock/hatch{ frequency = 1331; icon_state = "door_closed"; @@ -17748,7 +17731,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aON" = ( +"aNk" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1331; @@ -17757,32 +17740,32 @@ }, /turf/simulated/wall/voxshuttle, /area/skipjack_station/start) -"aOO" = ( +"aNl" = ( /turf/unsimulated/floor{ icon_state = "bluefull" }, /area/centcom/holding) -"aOP" = ( +"aNm" = ( /obj/structure/window/reinforced/holowindow/disappearing, /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/centcom/holding) -"aOQ" = ( +"aNn" = ( /obj/structure/window/reinforced/holowindow/disappearing, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/holding) -"aOR" = ( +"aNo" = ( /obj/structure/window/reinforced/holowindow/disappearing, /turf/unsimulated/floor{ icon_state = "red"; dir = 4 }, /area/centcom/holding) -"aOS" = ( +"aNp" = ( /obj/machinery/door/airlock/centcom{ name = "IAC Regional Outpost A23"; opacity = 1; @@ -17792,7 +17775,7 @@ icon_state = "floor" }, /area/centcom/spawning) -"aOT" = ( +"aNq" = ( /obj/structure/sign/nosmoking_1{ pixel_x = 32 }, @@ -17801,7 +17784,7 @@ dir = 4 }, /area/centcom/spawning) -"aOU" = ( +"aNr" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; opacity = 1; @@ -17811,7 +17794,7 @@ icon_state = "floor" }, /area/centcom/spawning) -"aOV" = ( +"aNs" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17820,14 +17803,14 @@ icon_state = "redfull" }, /area/centcom/spawning) -"aOW" = ( +"aNt" = ( /obj/structure/window/reinforced, /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/centcom/spawning) -"aOX" = ( +"aNu" = ( /obj/structure/window/reinforced, /obj/machinery/light, /turf/unsimulated/floor{ @@ -17835,7 +17818,7 @@ dir = 2 }, /area/centcom/spawning) -"aOY" = ( +"aNv" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -17845,21 +17828,21 @@ icon_state = "redfull" }, /area/centcom/spawning) -"aOZ" = ( +"aNw" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /obj/machinery/status_display/arrivals_display, /turf/unsimulated/floor{ name = "plating" }, /area/centcom/spawning) -"aPa" = ( +"aNx" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ frequency = 1331; id_tag = "vox_west_vent" }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPb" = ( +"aNy" = ( /obj/machinery/airlock_sensor{ frequency = 1331; id_tag = "vox_west_sensor"; @@ -17867,25 +17850,25 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPc" = ( +"aNz" = ( /obj/structure/table/standard, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aPd" = ( +"aNA" = ( /obj/machinery/computer/shuttle_control/multi/vox, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aPe" = ( +"aNB" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aPf" = ( +"aNC" = ( /obj/machinery/button/remote/blast_door{ id = "skipjackshutters"; name = "remote shutter control"; @@ -17893,7 +17876,7 @@ }, /turf/simulated/wall/voxshuttle, /area/skipjack_station/start) -"aPg" = ( +"aND" = ( /obj/machinery/airlock_sensor{ frequency = 1331; id_tag = "vox_east_sensor"; @@ -17901,7 +17884,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPh" = ( +"aNE" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 0; frequency = 1331; @@ -17909,7 +17892,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPi" = ( +"aNF" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -17918,7 +17901,7 @@ dir = 8 }, /area/centcom/holding) -"aPj" = ( +"aNG" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -17926,7 +17909,7 @@ icon_state = "floor" }, /area/centcom/holding) -"aPk" = ( +"aNH" = ( /obj/structure/window/reinforced/holowindow/disappearing{ dir = 1 }, @@ -17935,7 +17918,7 @@ dir = 4 }, /area/centcom/holding) -"aPl" = ( +"aNI" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -17945,41 +17928,41 @@ dir = 8 }, /area/centcom/spawning) -"aPm" = ( +"aNJ" = ( /obj/structure/banner/unmovable, /turf/unsimulated/floor{ icon_state = "blue"; dir = 9 }, /area/centcom/spawning) -"aPn" = ( +"aNK" = ( /obj/structure/banner/unmovable, /turf/unsimulated/floor{ icon_state = "blue"; dir = 5 }, /area/centcom/spawning) -"aPo" = ( +"aNL" = ( /obj/machinery/porta_turret/crescent, /obj/effect/decal/warning_stripes, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/spawning) -"aPp" = ( +"aNM" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 5 }, /area/centcom/spawning) -"aPq" = ( +"aNN" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, /obj/machinery/meter, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPr" = ( +"aNO" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ tag_airpump = "vox_west_vent"; tag_exterior_door = "vox_northwest_lock"; @@ -17998,7 +17981,7 @@ /obj/machinery/light/small, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPs" = ( +"aNP" = ( /obj/machinery/light/small{ dir = 8 }, @@ -18006,7 +17989,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aPt" = ( +"aNQ" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -18014,7 +17997,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aPu" = ( +"aNR" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -18024,7 +18007,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aPv" = ( +"aNS" = ( /obj/machinery/light/small{ dir = 4 }, @@ -18032,7 +18015,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aPw" = ( +"aNT" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ tag_airpump = "vox_east_vent"; tag_exterior_door = "vox_northeast_lock"; @@ -18051,24 +18034,24 @@ /obj/machinery/light/small, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPx" = ( +"aNU" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, /obj/machinery/meter, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPy" = ( +"aNV" = ( /obj/structure/sign/directions/all, /turf/unsimulated/wall/riveted, /area/centcom/spawning) -"aPz" = ( +"aNW" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 4 }, /area/centcom/spawning) -"aPA" = ( +"aNX" = ( /obj/machinery/door/blast/regular/open{ dir = 1; id = "odinaslockdown" @@ -18084,7 +18067,7 @@ dir = 5 }, /area/centcom/spawning) -"aPB" = ( +"aNY" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -18095,7 +18078,7 @@ dir = 4 }, /area/centcom/spawning) -"aPC" = ( +"aNZ" = ( /obj/machinery/door/blast/regular/open{ dir = 1; id = "odinaslockdown" @@ -18105,13 +18088,13 @@ dir = 9 }, /area/centcom/spawning) -"aPD" = ( +"aOa" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 1 }, /area/centcom/spawning) -"aPE" = ( +"aOb" = ( /obj/machinery/door/airlock/hatch{ frequency = 1331; icon_state = "door_closed"; @@ -18122,7 +18105,7 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPF" = ( +"aOc" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/d762, /obj/item/weapon/gun/projectile/dragunov, @@ -18130,19 +18113,19 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aPG" = ( +"aOd" = ( /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aPH" = ( +"aOe" = ( /obj/structure/table/rack, /obj/random/melee, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aPI" = ( +"aOf" = ( /obj/machinery/door/airlock/hatch{ frequency = 1331; icon_state = "door_closed"; @@ -18153,7 +18136,7 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPJ" = ( +"aOg" = ( /obj/structure/window/reinforced/holowindow{ dir = 1 }, @@ -18161,7 +18144,7 @@ icon_state = "dark" }, /area/centcom/holding) -"aPK" = ( +"aOh" = ( /obj/machinery/door/window/holowindoor{ dir = 1; name = "Green Corner" @@ -18170,13 +18153,13 @@ icon_state = "dark" }, /area/centcom/holding) -"aPL" = ( +"aOi" = ( /turf/unsimulated/floor{ icon_state = "greencorner"; dir = 4 }, /area/centcom/holding) -"aPM" = ( +"aOj" = ( /obj/machinery/door/window/holowindoor{ base_state = "right"; icon_state = "right"; @@ -18186,7 +18169,7 @@ icon_state = "dark" }, /area/centcom/holding) -"aPN" = ( +"aOk" = ( /obj/machinery/door/blast/regular/open{ dir = 1; id = "odinaslockdown" @@ -18195,18 +18178,18 @@ icon_state = "floor" }, /area/centcom/spawning) -"aPO" = ( +"aOl" = ( /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 4 }, /area/centcom/spawning) -"aPP" = ( +"aOm" = ( /turf/unsimulated/floor{ icon_state = "plaque" }, /area/centcom/spawning) -"aPQ" = ( +"aOn" = ( /obj/structure/flora/pottedplant/random{ anchored = 1 }, @@ -18215,7 +18198,7 @@ dir = 4 }, /area/centcom/spawning) -"aPR" = ( +"aOo" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/access_button{ command = "cycle_interior"; @@ -18226,7 +18209,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPS" = ( +"aOp" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/ionrifle, /obj/item/weapon/material/harpoon, @@ -18241,7 +18224,7 @@ /obj/item/weapon/rig/light/stealth, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPT" = ( +"aOq" = ( /obj/machinery/microwave{ pixel_x = -1; pixel_y = 8 @@ -18249,7 +18232,7 @@ /obj/structure/table/steel, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPU" = ( +"aOr" = ( /obj/item/seeds/potatoseed, /obj/item/seeds/potatoseed, /obj/item/seeds/ambrosiavulgarisseed, @@ -18258,18 +18241,18 @@ /obj/structure/table/steel, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPV" = ( +"aOs" = ( /obj/machinery/vending/hydroseeds, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPW" = ( +"aOt" = ( /obj/structure/table/rack, /obj/random/energy_antag, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aPX" = ( +"aOu" = ( /obj/structure/table/rack, /obj/item/weapon/storage/belt/utility/full, /obj/item/weapon/storage/belt/utility/full, @@ -18277,11 +18260,11 @@ /obj/item/device/multitool, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPY" = ( +"aOv" = ( /obj/machinery/washing_machine, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aPZ" = ( +"aOw" = ( /obj/structure/table/standard, /obj/item/weapon/storage/fancy/cigarettes, /obj/item/weapon/flame/lighter/zippo, @@ -18295,7 +18278,7 @@ /obj/item/weapon/card/emag, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQa" = ( +"aOx" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/mining, /obj/item/clothing/head/helmet/space/void/mining, @@ -18308,7 +18291,7 @@ /obj/item/weapon/rig/light/hacker, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQb" = ( +"aOy" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/access_button{ command = "cycle_interior"; @@ -18319,24 +18302,24 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQc" = ( +"aOz" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 10 }, /area/centcom/spawning) -"aQd" = ( +"aOA" = ( /turf/unsimulated/floor{ icon_state = "blue" }, /area/centcom/spawning) -"aQe" = ( +"aOB" = ( /turf/unsimulated/floor{ icon_state = "blue"; dir = 6 }, /area/centcom/spawning) -"aQf" = ( +"aOC" = ( /turf/unsimulated/floor{ icon_state = "floor" }, @@ -18347,7 +18330,7 @@ icon_state = "wood_siding2" }, /area/centcom/spawning) -"aQg" = ( +"aOD" = ( /obj/machinery/light, /obj/structure/sign/directions/dock{ dir = 1; @@ -18361,21 +18344,21 @@ icon_state = "floor" }, /area/centcom/spawning) -"aQh" = ( +"aOE" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQi" = ( +"aOF" = ( /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQj" = ( +"aOG" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQk" = ( +"aOH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18393,7 +18376,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQl" = ( +"aOI" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18408,7 +18391,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQm" = ( +"aOJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18426,7 +18409,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQn" = ( +"aOK" = ( /obj/machinery/door/airlock/hatch{ req_access = list(150) }, @@ -18434,7 +18417,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQo" = ( +"aOL" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, /obj/item/clothing/suit/space/syndicate/black/engie, @@ -18445,17 +18428,17 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQp" = ( +"aOM" = ( /obj/item/robot_parts/head, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQq" = ( +"aON" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"aQr" = ( +"aOO" = ( /obj/structure/table/holotable, /obj/item/clothing/gloves/boxing/hologlove{ icon_state = "boxinggreen"; @@ -18465,7 +18448,7 @@ icon_state = "dark" }, /area/centcom/holding) -"aQs" = ( +"aOP" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -18475,7 +18458,7 @@ dir = 8 }, /area/centcom/holding) -"aQt" = ( +"aOQ" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -18484,14 +18467,14 @@ icon_state = "greencorner" }, /area/centcom/holding) -"aQu" = ( +"aOR" = ( /obj/structure/table/holotable, /turf/unsimulated/floor{ icon_state = "green"; dir = 10 }, /area/centcom/holding) -"aQv" = ( +"aOS" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/green, @@ -18502,7 +18485,7 @@ icon_state = "green" }, /area/centcom/holding) -"aQw" = ( +"aOT" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, /obj/item/clothing/suit/armor/tdome/green, @@ -18512,7 +18495,7 @@ icon_state = "green" }, /area/centcom/holding) -"aQx" = ( +"aOU" = ( /obj/structure/table/holotable, /obj/machinery/readybutton{ pixel_y = 0 @@ -18522,15 +18505,15 @@ dir = 6 }, /area/centcom/holding) -"aQy" = ( +"aOV" = ( /obj/machinery/status_display/arrivals_display, /turf/unsimulated/wall/riveted, /area/centcom/spawning) -"aQz" = ( +"aOW" = ( /obj/structure/sign/nosmoking_2, /turf/unsimulated/wall/riveted, /area/centcom/spawning) -"aQA" = ( +"aOX" = ( /turf/unsimulated/floor{ icon_state = "floor" }, @@ -18541,7 +18524,7 @@ icon_state = "wood_siding4" }, /area/centcom/spawning) -"aQB" = ( +"aOY" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/window/reinforced/crescent{ @@ -18558,7 +18541,7 @@ name = "grass" }, /area/centcom/spawning) -"aQC" = ( +"aOZ" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/ywflowers, /obj/structure/window/reinforced/crescent{ @@ -18571,7 +18554,7 @@ name = "grass" }, /area/centcom/spawning) -"aQD" = ( +"aPa" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/window/reinforced/crescent{ @@ -18584,7 +18567,7 @@ name = "grass" }, /area/centcom/spawning) -"aQE" = ( +"aPb" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/ywflowers, /obj/structure/window/reinforced/crescent{ @@ -18597,7 +18580,7 @@ name = "grass" }, /area/centcom/spawning) -"aQF" = ( +"aPc" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/window/reinforced/crescent{ @@ -18610,7 +18593,7 @@ name = "grass" }, /area/centcom/spawning) -"aQG" = ( +"aPd" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/window/reinforced/crescent{ @@ -18627,7 +18610,7 @@ name = "grass" }, /area/centcom/spawning) -"aQH" = ( +"aPe" = ( /turf/unsimulated/floor{ icon_state = "floor" }, @@ -18638,7 +18621,7 @@ icon_state = "wood_siding8" }, /area/centcom/spawning) -"aQI" = ( +"aPf" = ( /obj/machinery/camera/network/crescent{ c_tag = "Crescent Departures"; dir = 8 @@ -18648,7 +18631,7 @@ dir = 4 }, /area/centcom/spawning) -"aQJ" = ( +"aPg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -18666,11 +18649,11 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQK" = ( +"aPh" = ( /obj/item/robot_parts/l_leg, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQL" = ( +"aPi" = ( /turf/unsimulated/floor{ icon_state = "floor" }, @@ -18679,7 +18662,7 @@ icon_state = "wood_siding1" }, /area/centcom/spawning) -"aQM" = ( +"aPj" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 @@ -18689,7 +18672,7 @@ icon_state = "floor" }, /area/centcom/spawning) -"aQN" = ( +"aPk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -18704,16 +18687,16 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQO" = ( +"aPl" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQP" = ( +"aPm" = ( /obj/machinery/floodlight, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQQ" = ( +"aPn" = ( /obj/structure/table/rack, /obj/item/weapon/gun/launcher/crossbow, /obj/item/stack/rods{ @@ -18732,7 +18715,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQR" = ( +"aPo" = ( /obj/structure/table/rack, /obj/item/weapon/grenade/empgrenade, /obj/item/weapon/grenade/flashbang, @@ -18741,7 +18724,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQS" = ( +"aPp" = ( /obj/structure/table/rack, /obj/item/device/suit_cooling_unit/improved, /obj/item/device/suit_cooling_unit/improved, @@ -18753,7 +18736,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQT" = ( +"aPq" = ( /obj/structure/table/steel, /obj/machinery/recharger, /obj/machinery/light/small{ @@ -18763,17 +18746,17 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aQU" = ( +"aPr" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQV" = ( +"aPs" = ( /obj/item/robot_parts/robot_suit, /obj/item/robot_parts/r_leg, /obj/item/robot_parts/r_arm, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aQW" = ( +"aPt" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/sunglasses{ pixel_x = 4; @@ -18793,7 +18776,7 @@ dir = 8 }, /area/centcom/holding) -"aQX" = ( +"aPu" = ( /obj/structure/table/standard, /obj/item/clothing/ears/earmuffs{ pixel_x = 4; @@ -18812,7 +18795,7 @@ dir = 8 }, /area/centcom/holding) -"aQY" = ( +"aPv" = ( /obj/structure/table/standard, /obj/machinery/recharger, /obj/machinery/light/spot{ @@ -18824,7 +18807,7 @@ dir = 8 }, /area/centcom/holding) -"aQZ" = ( +"aPw" = ( /obj/structure/closet/crate, /obj/item/target, /obj/item/target, @@ -18843,13 +18826,13 @@ dir = 8 }, /area/centcom/holding) -"aRa" = ( +"aPx" = ( /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/centcom/holding) -"aRb" = ( +"aPy" = ( /obj/structure/holostool, /obj/machinery/light{ dir = 1; @@ -18861,20 +18844,20 @@ dir = 5 }, /area/centcom/holding) -"aRc" = ( +"aPz" = ( /obj/structure/holohoop, /turf/unsimulated/floor{ icon_state = "red"; dir = 1 }, /area/centcom/holding) -"aRd" = ( +"aPA" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 5 }, /area/centcom/holding) -"aRe" = ( +"aPB" = ( /obj/structure/sign/goldenplaque{ desc = "Awarded to the NTCC Odin wing of the Romanovich Exploration Guild for discovery of the bountiful asteroid (361224) Borealis, site of the NSS Aurora II"; name = "Chuck DeMayer's Award of Excellence"; @@ -18885,7 +18868,7 @@ dir = 8 }, /area/centcom/spawning) -"aRf" = ( +"aPC" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18901,13 +18884,13 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRg" = ( +"aPD" = ( /obj/machinery/door/airlock/hatch{ req_access = list(150) }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRh" = ( +"aPE" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -18918,13 +18901,13 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aRi" = ( +"aPF" = ( /obj/structure/table/steel, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aRj" = ( +"aPG" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -18935,7 +18918,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aRk" = ( +"aPH" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -18944,22 +18927,22 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRl" = ( +"aPI" = ( /obj/item/weapon/wrench, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRm" = ( +"aPJ" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/item/weapon/crowbar, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRn" = ( +"aPK" = ( /obj/machinery/door/airlock/glass, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"aRo" = ( +"aPL" = ( /obj/machinery/door/airlock/centcom{ name = "Romanovich Exploration Guild"; opacity = 1; @@ -18969,12 +18952,12 @@ icon_state = "floor" }, /area/centcom/spawning) -"aRp" = ( +"aPM" = ( /turf/unsimulated/floor{ icon_state = "bluecorner" }, /area/centcom/spawning) -"aRq" = ( +"aPN" = ( /obj/machinery/door/blast/regular/open{ dir = 1; id = "odinaslockdown" @@ -18990,14 +18973,14 @@ dir = 6 }, /area/centcom/spawning) -"aRr" = ( +"aPO" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 4 }, /area/centcom/spawning) -"aRs" = ( +"aPP" = ( /obj/machinery/door/blast/regular/open{ dir = 1; id = "odinaslockdown" @@ -19007,20 +18990,20 @@ dir = 10 }, /area/centcom/spawning) -"aRt" = ( +"aPQ" = ( /turf/unsimulated/floor{ icon_state = "bluecorner"; dir = 8 }, /area/centcom/spawning) -"aRu" = ( +"aPR" = ( /obj/structure/banner/unmovable, /turf/unsimulated/floor{ icon_state = "blue"; dir = 6 }, /area/centcom/spawning) -"aRv" = ( +"aPS" = ( /obj/machinery/light/small{ dir = 8 }, @@ -19030,22 +19013,22 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRw" = ( +"aPT" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRx" = ( +"aPU" = ( /obj/machinery/suit_cycler/syndicate{ locked = 0 }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRy" = ( +"aPV" = ( /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/skipjack_station/start) -"aRz" = ( +"aPW" = ( /obj/machinery/light/small{ dir = 1 }, @@ -19053,7 +19036,7 @@ icon_state = "floor7" }, /area/skipjack_station/start) -"aRA" = ( +"aPX" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -19061,14 +19044,14 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aRB" = ( +"aPY" = ( /obj/structure/table/steel, /obj/item/weapon/deck/cards, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aRC" = ( +"aPZ" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -19076,7 +19059,7 @@ icon_state = "floor4" }, /area/skipjack_station/start) -"aRD" = ( +"aQa" = ( /obj/machinery/bodyscanner{ allowed_species = list("Human","Skrell","Unathi","Tajara","M'sai Tajara","Zhan-Khazan Tajara","Vaurca Worker","Vaurca Warrior","Diona","Vox"); dir = 8; @@ -19086,7 +19069,7 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aRE" = ( +"aQb" = ( /obj/machinery/light/small{ dir = 1 }, @@ -19098,23 +19081,23 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aRF" = ( +"aQc" = ( /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/skipjack_station/start) -"aRG" = ( +"aQd" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRH" = ( +"aQe" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/item/weapon/tank/nitrogen, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRI" = ( +"aQf" = ( /obj/machinery/light/small{ dir = 4 }, @@ -19124,12 +19107,12 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRJ" = ( +"aQg" = ( /turf/unsimulated/floor{ icon_state = "redfull" }, /area/centcom/holding) -"aRK" = ( +"aQh" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -19139,7 +19122,7 @@ dir = 4 }, /area/centcom/holding) -"aRL" = ( +"aQi" = ( /obj/structure/flora/pottedplant/random{ anchored = 1 }, @@ -19148,7 +19131,7 @@ dir = 10 }, /area/centcom/spawning) -"aRM" = ( +"aQj" = ( /obj/structure/flora/pottedplant/random{ anchored = 1 }, @@ -19157,7 +19140,7 @@ dir = 6 }, /area/centcom/spawning) -"aRN" = ( +"aQk" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/crescent{ icon_state = "rwindow"; @@ -19179,7 +19162,7 @@ dir = 9 }, /area/centcom/spawning) -"aRO" = ( +"aQl" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/northright{ req_access = list(109) @@ -19196,7 +19179,7 @@ dir = 1 }, /area/centcom/spawning) -"aRP" = ( +"aQm" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced/crescent{ icon_state = "rwindow"; @@ -19220,7 +19203,7 @@ dir = 5 }, /area/centcom/spawning) -"aRQ" = ( +"aQn" = ( /obj/machinery/status_display/arrivals_display{ pixel_y = -32 }, @@ -19228,25 +19211,25 @@ icon_state = "blue" }, /area/centcom/spawning) -"aRR" = ( +"aQo" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows"; dir = 9 }, /area/wizard_station) -"aRS" = ( +"aQp" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows2"; dir = 8 }, /area/wizard_station) -"aRT" = ( +"aQq" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows"; dir = 5 }, /area/wizard_station) -"aRV" = ( +"aQr" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -19254,7 +19237,7 @@ }, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aRW" = ( +"aQs" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -19265,7 +19248,7 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aRY" = ( +"aQt" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, /obj/item/weapon/gun/energy/laser/practice, @@ -19274,7 +19257,7 @@ icon_state = "redfull" }, /area/centcom/holding) -"aRZ" = ( +"aQu" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -19288,7 +19271,7 @@ dir = 8 }, /area/centcom/holding) -"aSa" = ( +"aQv" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, /obj/item/weapon/gun/energy/laser/practice, @@ -19297,13 +19280,13 @@ icon_state = "bluefull" }, /area/centcom/holding) -"aSb" = ( +"aQw" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/holding) -"aSc" = ( +"aQx" = ( /obj/machinery/door/airlock/centcom{ name = "Security Checkpoint"; opacity = 1; @@ -19313,7 +19296,7 @@ icon_state = "floor" }, /area/centcom/spawning) -"aSd" = ( +"aQy" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -19322,7 +19305,7 @@ dir = 4 }, /area/centcom/spawning) -"aSe" = ( +"aQz" = ( /obj/machinery/button/remote/blast_door{ id = "odinaslockdown"; name = "Arrivals Lockdown"; @@ -19342,7 +19325,7 @@ dir = 5 }, /area/centcom/spawning) -"aSf" = ( +"aQA" = ( /obj/machinery/door/airlock/glass{ name = "Cryogenic Storage" }, @@ -19351,7 +19334,7 @@ dir = 2 }, /area/centcom/spawning) -"aSg" = ( +"aQB" = ( /obj/machinery/door/airlock/centcom{ name = "Unisex Restroom" }, @@ -19360,10 +19343,10 @@ dir = 2 }, /area/centcom/spawning) -"aSh" = ( +"aQC" = ( /turf/unsimulated/wall/fakeglass, /area/wizard_station) -"aSi" = ( +"aQD" = ( /obj/structure/table/wood, /obj/item/weapon/storage/backpack/satchel/withwallet, /turf/unsimulated/floor{ @@ -19371,7 +19354,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aSj" = ( +"aQE" = ( /obj/structure/table/wood, /obj/item/weapon/paper{ info = "\[center]\[b]LIST OF SPELLS AVAILABLE\[/b]\[/center]\[br]\[br]Magic Missile:\[br]This spell fires several, slow moving, magic projectiles at nearby targets. If they hit a target, it is paralyzed and takes minor damage.\[br]\[br]Fireball:\[br]This spell fires a fireball at a target and does not require wizard garb. Be careful not to fire it at people that are standing next to you.\[br]\[br]Disintegrate:\[br]This spell instantly kills somebody adjacent to you with the vilest of magick. It has a long cooldown.\[br]\[br]Disable Technology:\[br]This spell disables all weapons, cameras and most other technology in range.\[br]\[br]Smoke:\[br]This spell spawns a cloud of choking smoke at your location and does not require wizard garb.\[br]\[br]Blind:\[br]This spell temporarly blinds a single person and does not require wizard garb.\[br]Forcewall:\[br]This spell creates an unbreakable wall that lasts for 30 seconds and does not require wizard garb.\[br]\[br]Blink:\[br]This spell randomly teleports you a short distance. Useful for evasion or getting into areas if you have patience.\[br]\[br]Teleport:\[br]This spell teleports you to a type of area of your selection. Very useful if you are in danger, but has a decent cooldown, and is unpredictable.\[br]\[br]Mutate:\[br]This spell causes you to turn into a hulk, and gain telekinesis for a short while.\[br]\[br]Ethereal Jaunt:\[br]This spell creates your ethereal form, temporarily making you invisible and able to pass through walls.\[br]\[br]Knock:\[br]This spell opens nearby doors and does not require wizard garb.\[br]"; @@ -19382,7 +19365,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aSk" = ( +"aQF" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ on = 0; @@ -19394,31 +19377,31 @@ icon_state = "carpetside" }, /area/wizard_station) -"aSl" = ( +"aQG" = ( /obj/structure/shuttle/engine/propulsion, /turf/simulated/shuttle/wall/dark, /area/skipjack_station/start) -"aSm" = ( +"aQH" = ( /obj/structure/table/standard, /obj/item/weapon/legcuffs, /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/skipjack_station/start) -"aSn" = ( +"aQI" = ( /obj/structure/table/standard, /obj/item/weapon/deck/cards, /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/skipjack_station/start) -"aSo" = ( +"aQJ" = ( /obj/machinery/light/small, /turf/simulated/shuttle/floor{ icon_state = "floor4" }, /area/skipjack_station/start) -"aSp" = ( +"aQK" = ( /obj/structure/table/standard, /obj/item/weapon/circular_saw{ pixel_y = 8 @@ -19430,69 +19413,69 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aSq" = ( +"aQL" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 10 }, /area/centcom/holding) -"aSr" = ( +"aQM" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/centcom/holding) -"aSs" = ( +"aQN" = ( /obj/item/weapon/beach_ball/holoball, /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/centcom/holding) -"aSt" = ( +"aQO" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 6 }, /area/centcom/holding) -"aSu" = ( +"aQP" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 9 }, /area/centcom/spawning) -"aSv" = ( +"aQQ" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 1 }, /area/centcom/spawning) -"aSw" = ( +"aQR" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 5 }, /area/centcom/spawning) -"aSx" = ( +"aQS" = ( /obj/item/modular_computer/console/preset/command, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/spawning) -"aSy" = ( +"aQT" = ( /obj/machinery/computer/secure_data, /turf/unsimulated/floor{ icon_state = "floor" }, /area/centcom/spawning) -"aSz" = ( +"aQU" = ( /obj/structure/filingcabinet, /turf/unsimulated/floor{ icon_state = "blue"; dir = 4 }, /area/centcom/spawning) -"aSA" = ( +"aQV" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 @@ -19502,7 +19485,7 @@ dir = 2 }, /area/centcom/spawning) -"aSB" = ( +"aQW" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 @@ -19512,27 +19495,27 @@ dir = 2 }, /area/centcom/spawning) -"aSC" = ( +"aQX" = ( /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/spawning) -"aSD" = ( +"aQY" = ( /obj/machinery/cryopod, /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/spawning) -"aSE" = ( +"aQZ" = ( /obj/structure/cryofeed, /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/spawning) -"aSF" = ( +"aRa" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -19549,7 +19532,7 @@ dir = 2 }, /area/centcom/spawning) -"aSG" = ( +"aRb" = ( /obj/machinery/status_display/arrivals_display{ pixel_y = 32 }, @@ -19558,7 +19541,7 @@ dir = 2 }, /area/centcom/spawning) -"aSH" = ( +"aRc" = ( /obj/machinery/shower{ dir = 8; icon_state = "shower"; @@ -19570,16 +19553,16 @@ dir = 2 }, /area/centcom/spawning) -"aSI" = ( +"aRd" = ( /turf/unsimulated/wall/riveted, /area/wizard_station) -"aSJ" = ( +"aRe" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "carpetside" }, /area/wizard_station) -"aSK" = ( +"aRf" = ( /obj/effect/landmark/start{ name = "wizard" }, @@ -19588,20 +19571,20 @@ icon_state = "carpetsymbol" }, /area/wizard_station) -"aSL" = ( +"aRg" = ( /obj/structure/closet/coffin, /turf/unsimulated/floor{ dir = 4; icon_state = "carpetside" }, /area/wizard_station) -"aSM" = ( +"aRh" = ( /obj/machinery/optable, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/skipjack_station/start) -"aSN" = ( +"aRi" = ( /obj/structure/table/standard, /obj/item/weapon/cautery, /obj/item/weapon/retractor, @@ -19612,37 +19595,37 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aSO" = ( +"aRj" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 9 }, /area/centcom/holding) -"aSP" = ( +"aRk" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 5 }, /area/centcom/holding) -"aSQ" = ( +"aRl" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 10 }, /area/centcom/spawning) -"aSR" = ( +"aRm" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/centcom/spawning) -"aSS" = ( +"aRn" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 6 }, /area/centcom/spawning) -"aST" = ( +"aRo" = ( /obj/machinery/door/airlock/centcom{ name = "Staff Only"; opacity = 1; @@ -19652,7 +19635,7 @@ icon_state = "floor" }, /area/centcom/spawning) -"aSU" = ( +"aRp" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; id_tag = "centcom_setup"; @@ -19667,7 +19650,7 @@ dir = 4 }, /area/centcom/spawning) -"aSV" = ( +"aRq" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 @@ -19681,7 +19664,7 @@ dir = 2 }, /area/centcom/spawning) -"aSW" = ( +"aRr" = ( /obj/structure/cryofeed, /obj/machinery/light{ dir = 4; @@ -19692,27 +19675,27 @@ dir = 2 }, /area/centcom/spawning) -"aSX" = ( +"aRs" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/spawning) -"aSY" = ( +"aRt" = ( /obj/machinery/suit_cycler/wizard, /turf/unsimulated/floor{ dir = 10; icon_state = "carpetside" }, /area/wizard_station) -"aSZ" = ( +"aRu" = ( /turf/unsimulated/floor{ dir = 2; icon_state = "carpetside" }, /area/wizard_station) -"aTa" = ( +"aRv" = ( /obj/structure/table/wood, /obj/item/device/radio/intercom{ desc = "Talk through this. Evilly"; @@ -19728,7 +19711,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aTb" = ( +"aRw" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -19739,7 +19722,7 @@ icon_state = "floor7" }, /area/skipjack_station/start) -"aTc" = ( +"aRx" = ( /obj/structure/table/standard, /obj/item/weapon/bonesetter, /obj/item/weapon/bonegel, @@ -19750,20 +19733,20 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aTd" = ( +"aRy" = ( /obj/random/junk, /turf/unsimulated/floor{ icon_state = "blue"; dir = 4 }, /area/centcom/spawning) -"aTe" = ( +"aRz" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 2 }, /area/centcom/spawning) -"aTf" = ( +"aRA" = ( /obj/structure/closet/secure_closet/security{ name = "officer's locker"; req_access = list(103) @@ -19787,7 +19770,7 @@ dir = 10 }, /area/centcom/spawning) -"aTg" = ( +"aRB" = ( /obj/structure/closet/secure_closet/security{ name = "officer's locker"; req_access = list(103) @@ -19811,7 +19794,7 @@ dir = 10 }, /area/centcom/spawning) -"aTh" = ( +"aRC" = ( /obj/structure/simple_door/iron{ name = "Interdimensional Prison Cell" }, @@ -19820,7 +19803,7 @@ icon_state = "cult" }, /area/wizard_station) -"aTi" = ( +"aRD" = ( /obj/structure/toilet{ dir = 4 }, @@ -19831,7 +19814,7 @@ icon_state = "floor7" }, /area/skipjack_station/start) -"aTj" = ( +"aRE" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire{ pixel_x = 1 @@ -19844,7 +19827,7 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aTk" = ( +"aRF" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/adv{ pixel_x = 1 @@ -19860,7 +19843,7 @@ icon_state = "floor3" }, /area/skipjack_station/start) -"aTl" = ( +"aRG" = ( /obj/machinery/door/airlock/centcom{ name = "Real Fake Doors! and Co"; opacity = 1 @@ -19869,20 +19852,20 @@ icon_state = "floor" }, /area/centcom/spawning) -"aTm" = ( +"aRH" = ( /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 2 }, /area/centcom/spawning) -"aTn" = ( +"aRI" = ( /obj/machinery/light, /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 2 }, /area/centcom/spawning) -"aTo" = ( +"aRJ" = ( /obj/machinery/door/airlock/centcom{ name = "The Big Empty"; opacity = 1; @@ -19892,7 +19875,7 @@ icon_state = "floor" }, /area/centcom/spawning) -"aTp" = ( +"aRK" = ( /obj/machinery/computer/cryopod{ density = 0; layer = 3.3; @@ -19904,7 +19887,7 @@ dir = 2 }, /area/centcom/spawning) -"aTq" = ( +"aRL" = ( /obj/structure/urinal{ dir = 4; icon_state = "urinal"; @@ -19915,7 +19898,7 @@ dir = 2 }, /area/centcom/spawning) -"aTr" = ( +"aRM" = ( /obj/machinery/door/airlock/medical{ autoclose = 0; icon_state = "door_open"; @@ -19927,7 +19910,7 @@ dir = 2 }, /area/centcom/spawning) -"aTs" = ( +"aRN" = ( /obj/structure/toilet{ dir = 8 }, @@ -19943,13 +19926,13 @@ dir = 2 }, /area/centcom/spawning) -"aTt" = ( +"aRO" = ( /turf/unsimulated/wall/fakeglass{ dir = 1; icon_state = "fakewindows" }, /area/wizard_station) -"aTu" = ( +"aRP" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -19966,13 +19949,13 @@ icon_state = "cult" }, /area/wizard_station) -"aTv" = ( +"aRQ" = ( /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/wizard_station) -"aTw" = ( +"aRR" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -19987,20 +19970,20 @@ icon_state = "cult" }, /area/wizard_station) -"aTy" = ( +"aRS" = ( /obj/machinery/cryopod/robot, /turf/unsimulated/floor{ icon_state = "freezerfloor"; dir = 2 }, /area/centcom/spawning) -"aTz" = ( +"aRT" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows2"; dir = 1 }, /area/wizard_station) -"aTA" = ( +"aRU" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -20011,15 +19994,15 @@ name = "Gentlemans Shoes" }, /obj/item/clothing/under/gentlesuit, -/obj/item/clothing/suit/wizrobe/gentlecoat, /obj/item/clothing/head/wizard/cap, +/obj/item/clothing/suit/storage/toggle/wizrobe/gentlecoat, /obj/item/weapon/staff/gentcane, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/wizard_station) -"aTB" = ( +"aRV" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -20034,11 +20017,11 @@ icon_state = "cult" }, /area/wizard_station) -"aTC" = ( +"aRW" = ( /obj/structure/shuttle/engine/heater, /turf/simulated/shuttle/plating, /area/skipjack_station/start) -"aTD" = ( +"aRX" = ( /obj/structure/target_stake, /obj/item/target, /obj/effect/decal/warning_stripes, @@ -20046,7 +20029,7 @@ icon_state = "redfull" }, /area/centcom/holding) -"aTE" = ( +"aRY" = ( /obj/structure/target_stake, /obj/item/target, /obj/effect/decal/warning_stripes, @@ -20054,7 +20037,7 @@ icon_state = "bluefull" }, /area/centcom/holding) -"aTF" = ( +"aRZ" = ( /obj/structure/holostool, /obj/machinery/light, /turf/unsimulated/floor{ @@ -20062,7 +20045,7 @@ dir = 5 }, /area/centcom/holding) -"aTG" = ( +"aSa" = ( /obj/structure/holohoop{ dir = 1 }, @@ -20070,13 +20053,13 @@ icon_state = "green" }, /area/centcom/holding) -"aTH" = ( +"aSb" = ( /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 1 }, /area/centcom/spawning) -"aTI" = ( +"aSc" = ( /obj/machinery/computer/cryopod/robot{ pixel_y = -32 }, @@ -20085,7 +20068,7 @@ dir = 2 }, /area/centcom/spawning) -"aTJ" = ( +"aSd" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -20099,7 +20082,7 @@ icon_state = "cult" }, /area/wizard_station) -"aTK" = ( +"aSe" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -20113,13 +20096,13 @@ icon_state = "cult" }, /area/wizard_station) -"aTL" = ( +"aSf" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 1 }, /area/centcom/spawning) -"aTM" = ( +"aSg" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/green, /obj/item/clothing/gloves/rainbow, @@ -20132,7 +20115,7 @@ icon_state = "cult" }, /area/wizard_station) -"aTN" = ( +"aSh" = ( /obj/structure/table/rack, /obj/item/clothing/mask/gas/cyborg, /obj/item/clothing/mask/gas/mime, @@ -20145,7 +20128,7 @@ icon_state = "cult" }, /area/wizard_station) -"aTO" = ( +"aSi" = ( /obj/machinery/camera/network/crescent{ c_tag = "Shuttle West"; dir = 4 @@ -20155,26 +20138,26 @@ dir = 10 }, /area/centcom/holding) -"aTP" = ( +"aSj" = ( /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 8 }, /area/centcom/spawning) -"aTQ" = ( +"aSk" = ( /turf/unsimulated/floor{ icon_state = "ramptop"; dir = 8 }, /area/centcom/spawning) -"aTR" = ( +"aSl" = ( /obj/random/junk, /turf/unsimulated/floor{ icon_state = "red"; dir = 9 }, /area/centcom/spawning) -"aTS" = ( +"aSm" = ( /obj/structure/table/rack, /obj/item/clothing/glasses/eyepatch, /obj/item/clothing/glasses/monocle, @@ -20183,7 +20166,7 @@ icon_state = "cult" }, /area/wizard_station) -"aTT" = ( +"aSn" = ( /obj/effect/decal/cleanable/cobweb2{ icon_state = "spiderling"; name = "dead spider" @@ -20193,7 +20176,7 @@ icon_state = "cult" }, /area/wizard_station) -"aTU" = ( +"aSo" = ( /obj/structure/table/rack, /obj/item/clothing/mask/smokable/pipe/cobpipe, /obj/item/clothing/mask/smokable/pipe, @@ -20204,16 +20187,16 @@ icon_state = "cult" }, /area/wizard_station) -"aTV" = ( +"aSp" = ( /turf/unsimulated/wall/riveted, /area/tdome) -"aTW" = ( +"aSq" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ name = "plating" }, /area/tdome) -"aTX" = ( +"aSr" = ( /obj/machinery/door/airlock/centcom{ name = "Thunderdome"; opacity = 1; @@ -20228,7 +20211,7 @@ icon_state = "floor" }, /area/tdome) -"aTY" = ( +"aSs" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -20238,7 +20221,7 @@ dir = 8 }, /area/centcom/spawning) -"aTZ" = ( +"aSt" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -20248,7 +20231,7 @@ dir = 8 }, /area/centcom/spawning) -"aUa" = ( +"aSu" = ( /obj/structure/table/rack, /obj/item/weapon/dice/d20, /obj/item/weapon/dice, @@ -20263,7 +20246,7 @@ icon_state = "cult" }, /area/wizard_station) -"aUb" = ( +"aSv" = ( /obj/structure/table/rack, /obj/item/weapon/storage/backpack/cultpack, /obj/item/weapon/storage/backpack, @@ -20273,36 +20256,36 @@ icon_state = "cult" }, /area/wizard_station) -"aUc" = ( +"aSw" = ( /obj/structure/table/standard, /turf/unsimulated/floor{ icon_state = "floor" }, /area/tdome) -"aUd" = ( +"aSx" = ( /turf/unsimulated/floor{ icon_state = "floor" }, /area/tdome) -"aUe" = ( +"aSy" = ( /turf/unsimulated/floor{ icon_state = "neutral"; dir = 8 }, /area/tdome) -"aUf" = ( +"aSz" = ( /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 }, /area/tdome) -"aUg" = ( +"aSA" = ( /turf/unsimulated/floor{ icon_state = "neutral"; dir = 4 }, /area/tdome) -"aUh" = ( +"aSB" = ( /obj/structure/sign/directions/civ{ dir = 8; icon_state = "direction_civ"; @@ -20313,7 +20296,7 @@ dir = 10 }, /area/centcom/spawning) -"aUi" = ( +"aSC" = ( /obj/structure/sign/directions/dock{ dir = 4; icon_state = "direction_dock"; @@ -20325,7 +20308,7 @@ dir = 6 }, /area/centcom/spawning) -"aUj" = ( +"aSD" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -20333,13 +20316,13 @@ icon_state = "floor" }, /area/tdome) -"aUk" = ( +"aSE" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ icon_state = "floor" }, /area/tdome) -"aUl" = ( +"aSF" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -20347,14 +20330,14 @@ icon_state = "floor" }, /area/tdome) -"aUm" = ( +"aSG" = ( /obj/machinery/door/airlock/centcom{ name = "Traditional Vaurcesian Cuisine"; opacity = 1 }, /turf/unsimulated/wall/riveted, /area/centcom/spawning) -"aUn" = ( +"aSH" = ( /obj/structure/cult/tome, /obj/effect/decal/cleanable/cobweb, /turf/unsimulated/floor{ @@ -20362,7 +20345,7 @@ icon_state = "cult" }, /area/wizard_station) -"aUo" = ( +"aSI" = ( /obj/machinery/librarycomp, /obj/structure/table/wood, /turf/unsimulated/floor{ @@ -20370,7 +20353,7 @@ icon_state = "cult" }, /area/wizard_station) -"aUp" = ( +"aSJ" = ( /obj/machinery/chemical_dispenser/bar_soft/full, /obj/structure/table/wood, /turf/unsimulated/floor{ @@ -20378,26 +20361,26 @@ icon_state = "cult" }, /area/wizard_station) -"aUq" = ( +"aSK" = ( /obj/machinery/vending/magivend, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/wizard_station) -"aUr" = ( +"aSL" = ( /turf/unsimulated/floor{ dir = 8; icon_state = "red" }, /area/tdome) -"aUs" = ( +"aSM" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 4 }, /area/tdome) -"aUt" = ( +"aSN" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 4 @@ -20407,7 +20390,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUu" = ( +"aSO" = ( /obj/structure/table/wood, /obj/item/organ/heart, /turf/unsimulated/floor{ @@ -20415,7 +20398,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUv" = ( +"aSP" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 8 @@ -20425,30 +20408,30 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUw" = ( +"aSQ" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 10 }, /area/tdome) -"aUx" = ( +"aSR" = ( /turf/unsimulated/floor{ icon_state = "red"; dir = 2 }, /area/tdome) -"aUy" = ( +"aSS" = ( /turf/unsimulated/floor{ icon_state = "green" }, /area/tdome) -"aUz" = ( +"aST" = ( /turf/unsimulated/floor{ icon_state = "green"; dir = 6 }, /area/tdome) -"aUA" = ( +"aSU" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 4 @@ -20458,7 +20441,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUB" = ( +"aSV" = ( /obj/structure/table/wood, /obj/item/toy/figure/wizard, /turf/unsimulated/floor{ @@ -20466,7 +20449,7 @@ dir = 2 }, /area/wizard_station) -"aUC" = ( +"aSW" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 8 @@ -20476,7 +20459,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUD" = ( +"aSX" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; opacity = 1; @@ -20491,7 +20474,7 @@ icon_state = "floor" }, /area/tdome) -"aUE" = ( +"aSY" = ( /obj/structure/table/wood, /obj/item/weapon/storage/fancy/candle_box, /turf/unsimulated/floor{ @@ -20499,7 +20482,7 @@ dir = 2 }, /area/wizard_station) -"aUF" = ( +"aSZ" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; opacity = 1; @@ -20510,7 +20493,7 @@ dir = 5 }, /area/tdome) -"aUG" = ( +"aTa" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 4 @@ -20520,7 +20503,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUH" = ( +"aTb" = ( /obj/structure/table/wood, /obj/item/weapon/storage/fancy/crayons, /turf/unsimulated/floor{ @@ -20528,7 +20511,7 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUI" = ( +"aTc" = ( /obj/structure/bed/chair/wood/wings{ icon_state = "wooden_chair_wings"; dir = 8 @@ -20538,24 +20521,24 @@ icon_state = "carpetside" }, /area/wizard_station) -"aUJ" = ( +"aTd" = ( /obj/structure/closet/secure_closet/bar, /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome) -"aUK" = ( +"aTe" = ( /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome) -"aUL" = ( +"aTf" = ( /obj/machinery/gibber, /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome) -"aUM" = ( +"aTg" = ( /obj/machinery/door/airlock/command{ name = "Thunderdome" }, @@ -20569,14 +20552,14 @@ dir = 5 }, /area/tdome) -"aUN" = ( +"aTh" = ( /obj/machinery/vending/cigarette, /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aUO" = ( +"aTi" = ( /obj/structure/table/standard, /obj/item/weapon/flame/lighter/zippo, /obj/item/weapon/storage/fancy/cigarettes, @@ -20585,7 +20568,7 @@ dir = 8 }, /area/tdome/tdomeobserve) -"aUP" = ( +"aTj" = ( /obj/item/weapon/reagent_containers/food/drinks/cans/cola, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, @@ -20595,27 +20578,27 @@ dir = 8 }, /area/tdome/tdomeobserve) -"aUQ" = ( +"aTk" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aUR" = ( +"aTl" = ( /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aUS" = ( +"aTm" = ( /obj/machinery/vending/coffee, /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aUT" = ( +"aTn" = ( /obj/machinery/vending/snack{ name = "hacked Getmore Chocolate Corp"; prices = list() @@ -20625,14 +20608,14 @@ icon_state = "cult" }, /area/wizard_station) -"aUU" = ( +"aTo" = ( /obj/structure/window/reinforced, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/wizard_station) -"aUV" = ( +"aTp" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -20642,13 +20625,13 @@ icon_state = "cult" }, /area/wizard_station) -"aUW" = ( +"aTq" = ( /turf/unsimulated/floor{ icon_state = "rampbottom"; dir = 1 }, /area/wizard_station) -"aUX" = ( +"aTr" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -20658,26 +20641,26 @@ icon_state = "cult" }, /area/wizard_station) -"aUY" = ( +"aTs" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/wizard_station) -"aUZ" = ( +"aTt" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome) -"aVa" = ( +"aTu" = ( /obj/structure/closet/secure_closet/freezer/fridge, /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome) -"aVb" = ( +"aTv" = ( /obj/structure/bed/chair, /obj/effect/landmark{ name = "tdomeobserve" @@ -20687,7 +20670,7 @@ dir = 8 }, /area/tdome/tdomeobserve) -"aVc" = ( +"aTw" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposaloutlet, /turf/unsimulated/floor{ @@ -20695,38 +20678,38 @@ dir = 8 }, /area/tdome/tdomeobserve) -"aVd" = ( +"aTx" = ( /obj/machinery/vending/snack, /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aVe" = ( +"aTy" = ( /turf/unsimulated/floor{ icon_state = "chapel" }, /area/wizard_station) -"aVf" = ( +"aTz" = ( /turf/unsimulated/floor{ dir = 1; icon_state = "chapel" }, /area/wizard_station) -"aVg" = ( +"aTA" = ( /obj/effect/decal/cleanable/blood, /turf/unsimulated/floor{ dir = 1; icon_state = "chapel" }, /area/wizard_station) -"aVh" = ( +"aTB" = ( /obj/effect/decal/cleanable/cobweb2, /turf/unsimulated/floor{ icon_state = "chapel" }, /area/wizard_station) -"aVi" = ( +"aTC" = ( /obj/item/weapon/storage/box/donkpockets{ pixel_x = 3; pixel_y = 3 @@ -20748,55 +20731,55 @@ icon_state = "white" }, /area/tdome) -"aVj" = ( +"aTD" = ( /obj/structure/table/standard, /obj/machinery/microwave, /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome) -"aVk" = ( +"aTE" = ( /obj/structure/table/reinforced, /turf/unsimulated/floor{ icon_state = "white" }, /area/tdome) -"aVl" = ( +"aTF" = ( /obj/machinery/computer/security/telescreen, /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aVm" = ( +"aTG" = ( /obj/item/device/camera, /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aVn" = ( +"aTH" = ( /obj/structure/disposalpipe/segment, /turf/unsimulated/floor{ icon_state = "redbluefull"; dir = 8 }, /area/tdome/tdomeobserve) -"aVo" = ( +"aTI" = ( /obj/structure/cult/pylon, /turf/unsimulated/floor{ dir = 1; icon_state = "chapel" }, /area/wizard_station) -"aVp" = ( +"aTJ" = ( /obj/structure/table/rack, /obj/item/weapon/material/knife/ritual, /turf/unsimulated/floor{ icon_state = "chapel" }, /area/wizard_station) -"aVq" = ( +"aTK" = ( /obj/structure/cult/talisman, /obj/effect/decal/remains/human, /obj/effect/landmark{ @@ -20811,17 +20794,17 @@ icon_state = "chapel" }, /area/wizard_station) -"aVr" = ( +"aTL" = ( /obj/structure/cult/pylon, /turf/unsimulated/floor{ name = "plating"; icon_state = "cult" }, /area/wizard_station) -"aVs" = ( +"aTM" = ( /turf/unsimulated/wall/riveted, /area/tdome/tdome2) -"aVt" = ( +"aTN" = ( /obj/structure/bed/chair, /obj/structure/disposalpipe/segment, /obj/effect/landmark{ @@ -20832,16 +20815,16 @@ dir = 8 }, /area/tdome/tdomeobserve) -"aVu" = ( +"aTO" = ( /turf/unsimulated/wall/riveted, /area/tdome/tdome1) -"aVv" = ( +"aTP" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows2"; dir = 4 }, /area/wizard_station) -"aVw" = ( +"aTQ" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/shoes/brown, @@ -20850,16 +20833,16 @@ icon_state = "dark" }, /area/tdome/tdome2) -"aVx" = ( +"aTR" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/simulated/floor, /area/tdome) -"aVy" = ( +"aTS" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/tdome) -"aVz" = ( +"aTT" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, /obj/item/clothing/shoes/brown, @@ -20868,13 +20851,13 @@ icon_state = "dark" }, /area/tdome/tdome1) -"aVA" = ( +"aTU" = ( /turf/unsimulated/floor{ name = "plating"; icon_state = "lava" }, /area/wizard_station) -"aVB" = ( +"aTV" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "thunderdomeaxe"; @@ -20884,19 +20867,19 @@ icon_state = "dark" }, /area/tdome/tdome2) -"aVC" = ( +"aTW" = ( /obj/machinery/igniter, /obj/structure/banner, /turf/simulated/floor, /area/tdome) -"aVD" = ( +"aTX" = ( /turf/simulated/floor, /area/tdome) -"aVE" = ( +"aTY" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/tdome) -"aVF" = ( +"aTZ" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "thunderdomeaxe"; @@ -20906,7 +20889,7 @@ icon_state = "dark" }, /area/tdome/tdome1) -"aVG" = ( +"aUa" = ( /obj/effect/gibspawner/human, /mob/living/simple_animal/hostile/creature{ name = "Experiment 35b" @@ -20916,7 +20899,7 @@ icon_state = "lava" }, /area/wizard_station) -"aVH" = ( +"aUb" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/shoes/brown, @@ -20928,7 +20911,7 @@ icon_state = "dark" }, /area/tdome) -"aVI" = ( +"aUc" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "thunderdomegen"; @@ -20938,7 +20921,7 @@ icon_state = "dark" }, /area/tdome) -"aVJ" = ( +"aUd" = ( /obj/effect/landmark{ name = "tdome2" }, @@ -20946,7 +20929,7 @@ name = "plating" }, /area/tdome/tdome2) -"aVK" = ( +"aUe" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "thunderdome"; @@ -20954,7 +20937,7 @@ }, /turf/simulated/floor, /area/tdome) -"aVL" = ( +"aUf" = ( /obj/effect/landmark{ name = "tdome1" }, @@ -20962,7 +20945,7 @@ name = "plating" }, /area/tdome/tdome1) -"aVM" = ( +"aUg" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, /obj/item/clothing/shoes/brown, @@ -20974,7 +20957,7 @@ icon_state = "dark" }, /area/tdome) -"aVN" = ( +"aUh" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -20985,7 +20968,7 @@ name = "plating" }, /area/tdome/tdome2) -"aVO" = ( +"aUi" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -20996,19 +20979,19 @@ name = "plating" }, /area/tdome/tdome1) -"aVP" = ( +"aUj" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows"; dir = 10 }, /area/wizard_station) -"aVQ" = ( +"aUk" = ( /turf/unsimulated/wall/fakeglass{ icon_state = "fakewindows"; dir = 6 }, /area/wizard_station) -"aVR" = ( +"aUl" = ( /obj/effect/landmark{ name = "tdome2" }, @@ -21020,17 +21003,17 @@ name = "plating" }, /area/tdome/tdome2) -"aVS" = ( +"aUm" = ( /turf/simulated/floor/bluegrid, /area/tdome) -"aVT" = ( +"aUn" = ( /obj/machinery/flasher{ id = "flash"; name = "Thunderdome Flash" }, /turf/simulated/floor/bluegrid, /area/tdome) -"aVU" = ( +"aUo" = ( /obj/effect/landmark{ name = "tdome1" }, @@ -21042,7 +21025,7 @@ name = "plating" }, /area/tdome/tdome1) -"aVV" = ( +"aUp" = ( /obj/effect/landmark{ name = "tdome2" }, @@ -21050,18 +21033,18 @@ name = "plating" }, /area/tdome) -"aVW" = ( +"aUq" = ( /obj/machinery/atmospherics/pipe/vent, /turf/simulated/floor/bluegrid, /area/tdome) -"aVX" = ( +"aUr" = ( /obj/machinery/camera/network/thunder{ c_tag = "Thunderdome Arena"; invisibility = 101 }, /turf/simulated/floor/bluegrid, /area/tdome) -"aVY" = ( +"aUs" = ( /obj/effect/landmark{ name = "tdome1" }, @@ -21069,7 +21052,7 @@ name = "plating" }, /area/tdome) -"aVZ" = ( +"aUt" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -21080,27 +21063,27 @@ name = "plating" }, /area/tdome) -"aWa" = ( +"aUu" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor, /area/tdome) -"aWb" = ( +"aUv" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor, /area/tdome) -"aWc" = ( +"aUw" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor, /area/tdome) -"aWd" = ( +"aUx" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -21111,7 +21094,7 @@ name = "plating" }, /area/tdome) -"aWe" = ( +"aUy" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "thunderdomegen"; @@ -21121,11 +21104,11 @@ icon_state = "floor" }, /area/tdome) -"aWf" = ( +"aUz" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor, /area/tdome) -"aWg" = ( +"aUA" = ( /obj/machinery/door/airlock/command{ name = "Thunderdome Administration"; req_access = list(102) @@ -21134,7 +21117,7 @@ icon_state = "floor" }, /area/tdome) -"aWh" = ( +"aUB" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "thunderdomehea"; @@ -21144,13 +21127,13 @@ icon_state = "dark" }, /area/tdome) -"aWi" = ( +"aUC" = ( /turf/unsimulated/floor{ icon_state = "redcorner"; dir = 8 }, /area/tdome) -"aWj" = ( +"aUD" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/shoes/brown, @@ -21161,19 +21144,19 @@ icon_state = "dark" }, /area/tdome) -"aWk" = ( +"aUE" = ( /obj/machinery/door/airlock/command{ name = "Thunderdome Administration"; req_access = list(102) }, /turf/simulated/floor, /area/tdome) -"aWl" = ( +"aUF" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor, /area/tdome) -"aWm" = ( +"aUG" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, /obj/item/clothing/shoes/brown, @@ -21184,18 +21167,18 @@ icon_state = "dark" }, /area/tdome) -"aWn" = ( +"aUH" = ( /turf/unsimulated/floor{ icon_state = "greencorner" }, /area/tdome) -"aWo" = ( +"aUI" = ( /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) -"aWp" = ( +"aUJ" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -21207,21 +21190,21 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWq" = ( +"aUK" = ( /obj/item/weapon/extinguisher, /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) -"aWr" = ( +"aUL" = ( /obj/machinery/atmospherics/valve, /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) -"aWs" = ( +"aUM" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -21234,14 +21217,14 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWt" = ( +"aUN" = ( /obj/machinery/computer/security/telescreen, /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) -"aWu" = ( +"aUO" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, @@ -21253,14 +21236,14 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWv" = ( +"aUP" = ( /obj/item/weapon/wrench, /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) -"aWw" = ( +"aUQ" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -21270,7 +21253,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWx" = ( +"aUR" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; opacity = 1; @@ -21280,14 +21263,14 @@ icon_state = "floor" }, /area/tdome) -"aWy" = ( +"aUS" = ( /obj/structure/bed/chair, /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) -"aWz" = ( +"aUT" = ( /obj/structure/table/standard, /obj/machinery/recharger{ pixel_y = 4 @@ -21297,7 +21280,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWA" = ( +"aUU" = ( /obj/item/weapon/grenade/chem_grenade/cleaner, /obj/item/weapon/grenade/chem_grenade/cleaner, /obj/item/weapon/grenade/chem_grenade/cleaner, @@ -21314,7 +21297,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWB" = ( +"aUV" = ( /obj/machinery/computer/pod{ id = "thunderdomeaxe"; name = "Thunderdome Axe Supply" @@ -21324,7 +21307,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWC" = ( +"aUW" = ( /obj/machinery/computer/pod{ id = "thunderdomegen"; name = "Thunderdome General Supply" @@ -21334,7 +21317,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWD" = ( +"aUX" = ( /obj/machinery/computer/pod{ id = "thunderdomehea"; name = "Thunderdome Heavy Supply" @@ -21344,7 +21327,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWE" = ( +"aUY" = ( /obj/machinery/computer/pod{ id = "thunderdome"; name = "Thunderdome Blast Door Control" @@ -21354,7 +21337,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWF" = ( +"aUZ" = ( /obj/item/stack/medical/ointment, /obj/item/stack/medical/ointment, /obj/item/stack/medical/ointment, @@ -21364,7 +21347,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWG" = ( +"aVa" = ( /obj/structure/table/standard, /obj/item/stack/medical/bruise_pack, /obj/item/stack/medical/bruise_pack, @@ -21374,7 +21357,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWH" = ( +"aVb" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/handcuffs, /turf/unsimulated/floor{ @@ -21382,14 +21365,14 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWI" = ( +"aVc" = ( /obj/structure/table/standard, /turf/unsimulated/floor{ icon_state = "redyellowfull"; dir = 5 }, /area/tdome/tdomeadmin) -"aWJ" = ( +"aVd" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/electrical, /turf/unsimulated/floor{ @@ -21397,7 +21380,7 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWK" = ( +"aVe" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/mechanical, /turf/unsimulated/floor{ @@ -21405,70 +21388,49 @@ dir = 5 }, /area/tdome/tdomeadmin) -"aWL" = ( +"aVf" = ( /obj/effect/landmark{ name = "Penguin Spawn Random" }, /obj/structure/flora/tree/dead, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"aWM" = ( +"aVg" = ( /obj/effect/landmark{ name = "Penguin Spawn Emperor" }, /obj/structure/flora/tree/pine, /turf/simulated/floor/holofloor/snow, /area/holodeck/source_snowfield) -"aWN" = ( -/obj/effect/landmark{ - name = "Penguin Spawn Random" - }, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"aWO" = ( -/obj/effect/landmark{ - name = "Penguin Spawn Random" - }, -/obj/structure/flora/tree/dead, -/turf/simulated/floor/holofloor/snow, -/area/holodeck/source_snowfield) -"aWP" = ( +"aVh" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 5; icon_state = "diagonalWall3" }, /area/space) -"aWQ" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/space) -"aWR" = ( +"aVi" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 4; icon_state = "diagonalWall3" }, /area/space) -"aWS" = ( +"aVj" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 8; icon_state = "diagonalWall3" }, /area/shuttle/syndicate_elite/mothership) -"aWT" = ( +"aVk" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 6; icon_state = "diagonalWall3" }, /area/shuttle/syndicate_elite/mothership) -"aWU" = ( +"aVl" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 8; @@ -21477,7 +21439,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"aWV" = ( +"aVm" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 6; @@ -21486,14 +21448,14 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"aWW" = ( +"aVn" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 6; icon_state = "diagonalWall3" }, /area/space) -"aWX" = ( +"aVo" = ( /obj/structure/table/rack, /obj/item/weapon/storage/toolbox/syndicate, /turf/simulated/shuttle/floor{ @@ -21502,42 +21464,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"aWY" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"aWZ" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/space) -"aXa" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"aXb" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/space) -"aXc" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/space) -"aXd" = ( +"aVp" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 5; @@ -21546,7 +21473,7 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"aXe" = ( +"aVq" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 4; @@ -21555,172 +21482,58 @@ /area/syndicate_mothership{ name = "\improper Ninja Base" }) -"aXf" = ( +"aVr" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 5; icon_state = "diagonalWall3" }, /area/shuttle/syndicate_elite/mothership) -"aXg" = ( +"aVs" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 4; icon_state = "diagonalWall3" }, /area/shuttle/syndicate_elite/mothership) -"aXh" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate_elite/mothership) -"aXi" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/shuttle/syndicate_elite/mothership) -"aXj" = ( +"aVt" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 8; icon_state = "diagonalWall3" }, /area/syndicate_station/start) -"aXk" = ( +"aVu" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 6; icon_state = "diagonalWall3" }, /area/syndicate_station/start) -"aXl" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXm" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXn" = ( +"aVv" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 4; icon_state = "diagonalWall3" }, /area/syndicate_station/start) -"aXo" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXp" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXq" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXr" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXs" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXt" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXu" = ( +"aVw" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 5; icon_state = "diagonalWall3" }, /area/syndicate_station/start) -"aXv" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXw" = ( +"aVx" = ( /turf/simulated/floor/asteroid/ash, /area/template_noop) -"aXx" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXy" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXz" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXA" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/syndicate_station/start) -"aXB" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXC" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXD" = ( +"aVy" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/asteroid/ash, /area/merchant_station) -"aXE" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXF" = ( +"aVz" = ( /obj/effect/floor_decal/carpet, /obj/effect/floor_decal/carpet{ icon_state = "carpet_edges"; @@ -21736,60 +21549,24 @@ /obj/item/device/price_scanner, /turf/simulated/floor/carpet, /area/merchant_ship/start) -"aXG" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXH" = ( +"aVA" = ( /obj/machinery/light/small, /turf/simulated/floor/asteroid/ash, /area/merchant_station) -"aXI" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXJ" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXK" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXL" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXM" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXN" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXO" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXP" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXQ" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXR" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXS" = ( -/turf/simulated/floor/asteroid/ash, -/area/template_noop) -"aXT" = ( +"aVB" = ( /obj/structure/window/shuttle, /obj/structure/grille, /turf/unsimulated/floor{ name = "plating" }, /area/shuttle/escape/centcom) -"aXU" = ( +"aVC" = ( /obj/item/modular_computer/console/preset/medical, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aXV" = ( +"aVD" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 2; @@ -21800,7 +21577,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aXW" = ( +"aVE" = ( /obj/structure/table/standard, /obj/item/weapon/crowbar, /obj/item/weapon/extinguisher, @@ -21808,7 +21585,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aXX" = ( +"aVF" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 1 @@ -21817,46 +21594,19 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aXY" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aXZ" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYa" = ( +"aVG" = ( /obj/item/modular_computer/console/preset/research, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYb" = ( +"aVH" = ( /obj/item/modular_computer/console/preset/engineering, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYc" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYd" = ( +"aVI" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -21868,7 +21618,7 @@ icon_state = "floor6" }, /area/shuttle/escape/centcom) -"aYe" = ( +"aVJ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -21877,7 +21627,7 @@ icon_state = "floor6" }, /area/shuttle/escape/centcom) -"aYf" = ( +"aVK" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -21886,16 +21636,7 @@ icon_state = "floor6" }, /area/shuttle/escape/centcom) -"aYg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/modular_computer/console/preset/captain, -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/shuttle/escape/centcom) -"aYh" = ( +"aVL" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -21908,7 +21649,7 @@ icon_state = "floor6" }, /area/shuttle/escape/centcom) -"aYi" = ( +"aVM" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 1 @@ -21925,28 +21666,23 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYj" = ( +"aVN" = ( /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aYk" = ( +"aVO" = ( /obj/machinery/light, /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 8 }, /area/shuttle/escape/centcom) -"aYl" = ( +"aVP" = ( /turf/simulated/shuttle/floor{ icon_state = "floor6" }, /area/shuttle/escape/centcom) -"aYm" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/shuttle/escape/centcom) -"aYn" = ( +"aVQ" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 1 @@ -21955,35 +21691,25 @@ icon_state = "floor6" }, /area/shuttle/escape/centcom) -"aYo" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/shuttle/escape/centcom) -"aYp" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/shuttle/escape/centcom) -"aYq" = ( +"aVR" = ( /obj/machinery/light, /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 4 }, /area/shuttle/escape/centcom) -"aYr" = ( +"aVS" = ( /obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aYs" = ( +"aVT" = ( /obj/machinery/door/airlock/glass_command{ name = "Cockpit"; req_access = list(19) }, /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aYt" = ( +"aVU" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -21991,14 +21717,7 @@ }, /turf/simulated/shuttle/wall, /area/shuttle/escape/centcom) -"aYu" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Cockpit"; - req_access = list(19) - }, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"aYv" = ( +"aVV" = ( /obj/structure/bed/chair, /obj/machinery/light{ dir = 1; @@ -22009,77 +21728,20 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYw" = ( +"aVW" = ( /obj/structure/bed/chair, /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYx" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYy" = ( +"aVX" = ( /obj/structure/bed/chair, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYz" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/fire, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYA" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYB" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYC" = ( -/obj/structure/bed/chair, -/obj/structure/closet/walllocker/emerglocker/north, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYD" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYE" = ( +"aVY" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22087,55 +21749,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYL" = ( +"aVZ" = ( /obj/structure/closet/walllocker/emerglocker/west, /obj/structure/bed/chair{ dir = 1 @@ -22144,39 +21758,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYQ" = ( +"aWa" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22187,15 +21769,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYR" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/shuttle/wall, -/area/shuttle/escape/centcom) -"aYS" = ( +"aWb" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22208,39 +21782,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aYX" = ( +"aWc" = ( /obj/structure/closet/walllocker/emerglocker/east, /obj/structure/bed/chair{ dir = 1 @@ -22249,7 +21791,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYY" = ( +"aWd" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -22262,95 +21804,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aYZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZe" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZj" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZk" = ( +"aWe" = ( /obj/machinery/light{ dir = 4 }, @@ -22361,7 +21815,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZl" = ( +"aWf" = ( /obj/structure/window/reinforced, /obj/structure/closet/walllocker/emerglocker/west, /obj/structure/bed/chair{ @@ -22371,7 +21825,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZm" = ( +"aWg" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22380,34 +21834,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZq" = ( +"aWh" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22419,15 +21846,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZr" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/shuttle/wall, -/area/shuttle/escape/centcom) -"aZs" = ( +"aWi" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22441,43 +21860,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZx" = ( +"aWj" = ( /obj/structure/window/reinforced, /obj/structure/closet/walllocker/emerglocker/east, /obj/structure/bed/chair{ @@ -22487,22 +21870,18 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZy" = ( +"aWk" = ( /obj/machinery/light, /turf/simulated/shuttle/floor, /area/shuttle/escape/centcom) -"aZz" = ( +"aWl" = ( /obj/machinery/hologram/holopad, /obj/machinery/light, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZA" = ( -/obj/machinery/light, -/turf/simulated/shuttle/floor, -/area/shuttle/escape/centcom) -"aZB" = ( +"aWm" = ( /obj/machinery/door/airlock/glass_medical{ name = "Infirmary"; req_access = list(5) @@ -22511,7 +21890,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZC" = ( +"aWn" = ( /obj/machinery/door/airlock/glass_mining{ name = "Cargo" }, @@ -22519,7 +21898,7 @@ icon_state = "floor2" }, /area/shuttle/escape/centcom) -"aZD" = ( +"aWo" = ( /obj/machinery/door/airlock/glass_security{ name = "Holding Cell"; req_access = list(2) @@ -22528,41 +21907,30 @@ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"aZE" = ( +"aWp" = ( /obj/machinery/iv_drip, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZF" = ( +"aWq" = ( /obj/machinery/recharge_station, /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/escape/centcom) -"aZG" = ( +"aWr" = ( /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/escape/centcom) -"aZH" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/shuttle/escape/centcom) -"aZI" = ( +"aWs" = ( /obj/structure/bed/chair, /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"aZJ" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/escape/centcom) -"aZK" = ( +"aWt" = ( /obj/structure/bed/chair, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -22572,12 +21940,12 @@ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"aZL" = ( +"aWu" = ( /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"aZM" = ( +"aWv" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -22585,28 +21953,13 @@ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"aZN" = ( +"aWw" = ( /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/shuttle/floor{ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZO" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/shuttle/escape/centcom) -"aZP" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/escape/centcom) -"aZQ" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/escape/centcom) -"aZR" = ( +"aWx" = ( /obj/machinery/door/window/brigdoor{ name = "Holding Cell"; req_access = list(2) @@ -22615,20 +21968,7 @@ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"aZS" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/escape/centcom) -"aZT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/escape/centcom) -"aZU" = ( +"aWy" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ pixel_x = -4; @@ -22645,7 +21985,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZV" = ( +"aWz" = ( /obj/structure/closet/crate/medical, /obj/item/weapon/storage/firstaid/regular{ pixel_x = -2; @@ -22693,15 +22033,7 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/shuttle/escape/centcom) -"aZX" = ( +"aWA" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, @@ -22710,26 +22042,20 @@ icon_state = "floor3" }, /area/shuttle/escape/centcom) -"aZY" = ( +"aWB" = ( /obj/structure/closet/crate/freezer/rations, /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/escape/centcom) -"aZZ" = ( +"aWC" = ( /obj/structure/closet/crate/freezer/rations, /obj/machinery/light, /turf/simulated/shuttle/floor{ icon_state = "floor2" }, /area/shuttle/escape/centcom) -"baa" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/shuttle/escape/centcom) -"bab" = ( +"aWD" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22737,15 +22063,7 @@ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"bac" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/shuttle/escape/centcom) -"bad" = ( +"aWE" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -22758,20 +22076,20 @@ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"bae" = ( +"aWF" = ( /obj/structure/closet/walllocker/emerglocker/south, /obj/machinery/hologram/holopad, /turf/simulated/shuttle/floor{ icon_state = "floor7" }, /area/shuttle/escape/centcom) -"baf" = ( +"aWG" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/shuttle/wall, /area/shuttle/escape/centcom) -"bag" = ( +"aWH" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -22782,7 +22100,7 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"bah" = ( +"aWI" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -22792,5507 +22110,43 @@ }, /turf/simulated/shuttle/plating, /area/shuttle/escape/centcom) -"bai" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/wall, -/area/shuttle/escape/centcom) -"baj" = ( +"aWJ" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 8; icon_state = "diagonalWall3" }, /area/skipjack_station/start) -"bak" = ( +"aWK" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 6; icon_state = "diagonalWall3" }, /area/skipjack_station/start) -"bal" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bam" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"ban" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bao" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bap" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baq" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bar" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 8; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bas" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 6; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bat" = ( +"aWL" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 5; icon_state = "diagonalWall3" }, /area/skipjack_station/start) -"bau" = ( +"aWM" = ( /turf/space, /turf/simulated/shuttle/wall/dark{ dir = 4; icon_state = "diagonalWall3" }, /area/skipjack_station/start) -"bav" = ( +"aWN" = ( +/turf/space/transit/north/shuttlespace_ns3, +/area/space) +"aWO" = ( /turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baw" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bax" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"bay" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baz" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baA" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baB" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baC" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baD" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 5; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baE" = ( -/turf/space, -/turf/simulated/shuttle/wall/dark{ - dir = 4; - icon_state = "diagonalWall3" - }, -/area/skipjack_station/start) -"baF" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baG" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baH" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baI" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"baJ" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"baK" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"baL" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"baM" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"baN" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"baO" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"baP" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baQ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baR" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baS" = ( -/turf/space, -/area/template_noop) -"baT" = ( -/turf/space, -/area/template_noop) -"baU" = ( -/turf/space, -/area/template_noop) -"baV" = ( -/turf/space, -/area/template_noop) -"baW" = ( -/turf/space, -/area/template_noop) -"baX" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baY" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"baZ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bba" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbb" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbc" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbd" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbe" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbf" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbg" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bbh" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bbi" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bbj" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bbk" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bbl" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bbm" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bbn" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbo" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbp" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbq" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbr" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbs" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbt" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbu" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbv" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbw" = ( -/turf/space, -/area/template_noop) -"bbx" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bby" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbz" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbA" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbB" = ( -/obj/machinery/computer/secure_data, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bbC" = ( -/obj/machinery/computer/station_alert, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bbD" = ( -/obj/machinery/computer/shuttle_control/emergency, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bbE" = ( -/obj/item/modular_computer/console/preset/command, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bbF" = ( -/obj/machinery/computer/med_data, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bbG" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbH" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbI" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbJ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbK" = ( -/turf/space, -/area/template_noop) -"bbL" = ( -/turf/space, -/area/template_noop) -"bbM" = ( -/turf/space, -/area/template_noop) -"bbN" = ( -/turf/space, -/area/template_noop) -"bbO" = ( -/turf/space, -/area/template_noop) -"bbP" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbQ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbR" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbS" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbT" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbU" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbV" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bbW" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbX" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bbY" = ( -/obj/item/modular_computer/console/preset/medical, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bbZ" = ( -/obj/machinery/computer/med_data, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bca" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/fire, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcb" = ( -/obj/machinery/computer/shuttle_control/emergency, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcc" = ( -/obj/structure/table/standard, -/obj/item/weapon/crowbar, -/obj/item/weapon/extinguisher, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcd" = ( -/obj/machinery/computer/secure_data, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bce" = ( -/obj/item/modular_computer/console/preset/security, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcf" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bcg" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bch" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bci" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcj" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bck" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcl" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcm" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcn" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bco" = ( -/turf/space, -/area/template_noop) -"bcp" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcq" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bcr" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor") - }, -/area/template_noop) -"bcs" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/extinguisher, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle Bridge West" - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bct" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcu" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcw" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcy" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/toxin, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle Bridge East" - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcz" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor") - }, -/area/template_noop) -"bcA" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bcB" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcC" = ( -/turf/space, -/area/template_noop) -"bcD" = ( -/turf/space, -/area/template_noop) -"bcE" = ( -/turf/space, -/area/template_noop) -"bcF" = ( -/turf/space, -/area/template_noop) -"bcG" = ( -/turf/space, -/area/template_noop) -"bcH" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcI" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcJ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcK" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcM" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bcN" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bcO" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor") - }, -/area/template_noop) -"bcP" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcQ" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcR" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcS" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcT" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcU" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcV" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcW" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bcX" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bcY" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor") - }, -/area/template_noop) -"bcZ" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bda" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdb" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdc" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdd" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bde" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdf" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdg" = ( -/turf/space, -/area/template_noop) -"bdh" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdi" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bdj" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdk" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdl" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdm" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "escape_shuttle"; - pixel_x = 0; - pixel_y = -25; - req_one_access = list(13); - tag_door = "escape_shuttle_hatch" - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdn" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdo" = ( -/obj/machinery/light, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 0; - pixel_y = -32 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdp" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdq" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdr" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bds" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bdt" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdu" = ( -/turf/space, -/area/template_noop) -"bdv" = ( -/turf/space, -/area/template_noop) -"bdw" = ( -/turf/space, -/area/template_noop) -"bdx" = ( -/turf/space, -/area/template_noop) -"bdy" = ( -/turf/space, -/area/template_noop) -"bdz" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdA" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdB" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdC" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdD" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdE" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdF" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bdG" = ( -/obj/item/modular_computer/console/preset/research, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bdH" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdI" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdJ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdK" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdL" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdM" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdN" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdO" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdP" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bdQ" = ( -/obj/item/modular_computer/console/preset/engineering, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bdR" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bdS" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdT" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdU" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdV" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdW" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdX" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bdY" = ( -/turf/space, -/area/template_noop) -"bdZ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bea" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beb" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bec" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bed" = ( -/obj/item/modular_computer/console/preset/security, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bee" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bef" = ( -/obj/structure/AIcore/deactivated, -/turf/simulated/shuttle/floor, -/area/template_noop) -"beg" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beh" = ( -/obj/machinery/computer/crew, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bei" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bej" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bek" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bel" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bem" = ( -/turf/space, -/area/template_noop) -"ben" = ( -/turf/space, -/area/template_noop) -"beo" = ( -/turf/space, -/area/template_noop) -"bep" = ( -/turf/space, -/area/template_noop) -"beq" = ( -/turf/space, -/area/template_noop) -"ber" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bes" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bet" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beu" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bev" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bew" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bex" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bey" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bez" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"beA" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"beB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/banner, -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"beC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/modular_computer/console/preset/captain, -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"beD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/station_alert/all, -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"beE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/modular_computer/console/preset/captain, -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"beF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/banner, -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"beG" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"beH" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"beI" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "escape_shuttle"; - pixel_x = 25; - pixel_y = 0; - req_one_access = list(13); - tag_door = "escape_shuttle_hatch" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"beJ" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beK" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beM" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beN" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beO" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beP" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beQ" = ( -/turf/space, -/area/template_noop) -"beR" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"beS" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beT" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Escape Shuttle Cockpit"; - req_access = list(19) - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"beU" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"beV" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beW" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beX" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beY" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"beZ" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfa" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bfb" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Escape Shuttle Cockpit"; - req_access = list(19) - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bfc" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfd" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfe" = ( -/turf/space, -/area/template_noop) -"bff" = ( -/turf/space, -/area/template_noop) -"bfg" = ( -/turf/space, -/area/template_noop) -"bfh" = ( -/turf/space, -/area/template_noop) -"bfi" = ( -/turf/space, -/area/template_noop) -"bfj" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfk" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfl" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfm" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfn" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfo" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfp" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfq" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bfr" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bfs" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/ramp/bottom{ - icon_state = "rampbot"; - dir = 8 - }, -/area/template_noop) -"bft" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"bfu" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"bfv" = ( -/obj/structure/bed/chair/office/bridge{ - icon_state = "bridge"; - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"bfw" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"bfx" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor6" - }, -/area/template_noop) -"bfy" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/ramp/bottom{ - icon_state = "rampbot"; - dir = 4 - }, -/area/template_noop) -"bfz" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bfA" = ( -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bfB" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfC" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfD" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfE" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfF" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfG" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfH" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfI" = ( -/turf/space, -/area/template_noop) -"bfJ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfK" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfL" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bfM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bfN" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bfP" = ( -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle Cell" - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bfQ" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bfR" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bfT" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bfU" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bfV" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bfW" = ( -/turf/space, -/area/template_noop) -"bfX" = ( -/turf/space, -/area/template_noop) -"bfY" = ( -/turf/space, -/area/template_noop) -"bfZ" = ( -/turf/space, -/area/template_noop) -"bga" = ( -/turf/space, -/area/template_noop) -"bgb" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgc" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgd" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bge" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgf" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgg" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgh" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bgi" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Cockpit"; - req_access = list(19) - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bgj" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bgk" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgl" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgm" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgn" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgo" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgp" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgq" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgr" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bgs" = ( -/obj/machinery/door/airlock/glass_command{ - name = "Cockpit"; - req_access = list(19) - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bgt" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgu" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgv" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgw" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgx" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgy" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgz" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgA" = ( -/turf/space, -/area/template_noop) -"bgB" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgC" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bgD" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bgE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bgF" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bgG" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bgH" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bgI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bgJ" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bgK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bgL" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bgM" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bgN" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgO" = ( -/turf/space, -/area/template_noop) -"bgP" = ( -/turf/space, -/area/template_noop) -"bgQ" = ( -/turf/space, -/area/template_noop) -"bgR" = ( -/turf/space, -/area/template_noop) -"bgS" = ( -/turf/space, -/area/template_noop) -"bgT" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgU" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgV" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgW" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgX" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bgY" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bgZ" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bha" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhb" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhc" = ( -/obj/structure/bed/chair, -/obj/structure/closet/walllocker/emerglocker/north, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhd" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhe" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhf" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/fire, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhg" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhh" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhi" = ( -/obj/structure/bed/chair, -/obj/structure/closet/walllocker/emerglocker/north, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhj" = ( -/obj/structure/bed/chair, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhk" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhl" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bhm" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bhn" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bho" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhp" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhq" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhr" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhs" = ( -/turf/space, -/area/template_noop) -"bht" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bhu" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor3") - }, -/area/template_noop) -"bhv" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhx" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bhy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bhz" = ( -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bhA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bhB" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bhC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bhD" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhE" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor3") - }, -/area/template_noop) -"bhF" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bhG" = ( -/turf/space, -/area/template_noop) -"bhH" = ( -/turf/space, -/area/template_noop) -"bhI" = ( -/turf/space, -/area/template_noop) -"bhJ" = ( -/turf/space, -/area/template_noop) -"bhK" = ( -/turf/space, -/area/template_noop) -"bhL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhM" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhN" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhO" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bhP" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bhQ" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bhR" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhS" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhT" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhU" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhV" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhW" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhX" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhY" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bhZ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bia" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bib" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bic" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bid" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bie" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bif" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"big" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bih" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bii" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bij" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bik" = ( -/turf/space, -/area/template_noop) -"bil" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bim" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/extinguisher, -/obj/item/weapon/crowbar, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bin" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bio" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bip" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor3") - }, -/area/template_noop) -"biq" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bir" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Escape Shuttle Cell"; - req_access = list(2) - }, -/turf/simulated/shuttle/floor4, -/area/template_noop) -"bis" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bit" = ( -/turf/simulated/shuttle/wall{ - fixed_underlay = list("icon" = 'icons/turf/shuttle.dmi', "icon_state" = "floor3") - }, -/area/template_noop) -"biu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biv" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"biw" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/extinguisher, -/obj/item/weapon/crowbar, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bix" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"biy" = ( -/turf/space, -/area/template_noop) -"biz" = ( -/turf/space, -/area/template_noop) -"biA" = ( -/turf/space, -/area/template_noop) -"biB" = ( -/turf/space, -/area/template_noop) -"biC" = ( -/turf/space, -/area/template_noop) -"biD" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"biE" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"biF" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"biG" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"biH" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"biI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biJ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"biK" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"biL" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"biM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biT" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"biU" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"biV" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"biW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"biX" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"biY" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"biZ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bja" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjb" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjc" = ( -/turf/space, -/area/template_noop) -"bjd" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "shuttle_dock_north_mech"; - pixel_y = -19 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bje" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjf" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjg" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjh" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bji" = ( -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle Center" - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjj" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjk" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjl" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjm" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjn" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bjp" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bjq" = ( -/turf/space, -/area/template_noop) -"bjr" = ( -/turf/space, -/area/template_noop) -"bjs" = ( -/turf/space, -/area/template_noop) -"bjt" = ( -/turf/space, -/area/template_noop) -"bju" = ( -/turf/space, -/area/template_noop) -"bjv" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjw" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjx" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjy" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjz" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "shuttle_dock_north_mech"; - pixel_y = -19 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjA" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjB" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjC" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjD" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjE" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjF" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjG" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjH" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjI" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjJ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjK" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjL" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjM" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjN" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjO" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjP" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bjQ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjR" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjS" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjT" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bjU" = ( -/turf/space, -/area/template_noop) -"bjV" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bjW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle West"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bjX" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bjY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bjZ" = ( -/obj/structure/window/shuttle, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bka" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkb" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bkc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkd" = ( -/obj/structure/window/shuttle, -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 0 - }, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bke" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkf" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bkg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 28 - }, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle East"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkh" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bki" = ( -/turf/space, -/area/template_noop) -"bkj" = ( -/turf/space, -/area/template_noop) -"bkk" = ( -/turf/space, -/area/template_noop) -"bkl" = ( -/turf/space, -/area/template_noop) -"bkm" = ( -/turf/space, -/area/template_noop) -"bkn" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bko" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bkp" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bkq" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bkr" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bks" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bku" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkv" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bkw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bky" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkz" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/shuttle/wall, -/area/template_noop) -"bkA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkB" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkD" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bkE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkG" = ( -/obj/structure/closet/walllocker/emerglocker/east, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkH" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bkI" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bkJ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bkK" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bkL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bkM" = ( -/turf/space, -/area/template_noop) -"bkN" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bkO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkP" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bkQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkR" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bkS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkT" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bkU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkV" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bkW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkX" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bkY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bkZ" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bla" = ( -/turf/space, -/area/template_noop) -"blb" = ( -/turf/space, -/area/template_noop) -"blc" = ( -/turf/space, -/area/template_noop) -"bld" = ( -/turf/space, -/area/template_noop) -"ble" = ( -/turf/space, -/area/template_noop) -"blf" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blg" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blh" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bli" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blj" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"blk" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bll" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blm" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bln" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blo" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blp" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blq" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blr" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bls" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blt" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blu" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blv" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blw" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blx" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bly" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blz" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"blA" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blB" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blC" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blD" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blE" = ( -/turf/space, -/area/template_noop) -"blF" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"blG" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"blH" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"blJ" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"blK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"blL" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/shuttle/floor, -/area/template_noop) -"blM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"blN" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"blO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"blP" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"blQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"blR" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"blS" = ( -/turf/space, -/area/template_noop) -"blT" = ( -/turf/space, -/area/template_noop) -"blU" = ( -/turf/space, -/area/template_noop) -"blV" = ( -/turf/space, -/area/template_noop) -"blW" = ( -/turf/space, -/area/template_noop) -"blX" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blY" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"blZ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bma" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmb" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bmc" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bme" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmf" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmj" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bml" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmm" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmn" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmo" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmr" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bms" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmt" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmu" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmv" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmw" = ( -/turf/space, -/area/template_noop) -"bmx" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bmy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmz" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmB" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bmC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmD" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmF" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bmG" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmH" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bmJ" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bmK" = ( -/turf/space, -/area/template_noop) -"bmL" = ( -/turf/space, -/area/template_noop) -"bmM" = ( -/turf/space, -/area/template_noop) -"bmN" = ( -/turf/space, -/area/template_noop) -"bmO" = ( -/turf/space, -/area/template_noop) -"bmP" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmQ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmR" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmS" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bmT" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bmU" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmV" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmW" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmX" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmY" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bmZ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bna" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnb" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnc" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnd" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bne" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnf" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bng" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnh" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bni" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnj" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bnk" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bnl" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bnm" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bnn" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bno" = ( -/turf/space, -/area/template_noop) -"bnp" = ( -/turf/space, -/area/template_noop) -"bnq" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bnr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bns" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnu" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bnv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnw" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bny" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bnz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnA" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnB" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnC" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bnD" = ( -/turf/space, -/area/template_noop) -"bnE" = ( -/turf/space, -/area/template_noop) -"bnF" = ( -/turf/space, -/area/template_noop) -"bnG" = ( -/turf/space, -/area/template_noop) -"bnH" = ( -/turf/space, -/area/template_noop) -"bnI" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bnJ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bnK" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bnL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bnM" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bnN" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/walllocker/emerglocker/west, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnQ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnU" = ( -/obj/machinery/status_display{ - layer = 4; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/shuttle/wall, -/area/template_noop) -"bnV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bnY" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bnZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"boa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bob" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/walllocker/emerglocker/east, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"boc" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bod" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boe" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bof" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bog" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boh" = ( -/turf/space, -/area/template_noop) -"boi" = ( -/turf/space, -/area/template_noop) -"boj" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "shuttle_dock_south_mech"; - pixel_y = 19 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bok" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bol" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bom" = ( -/obj/machinery/status_display{ - pixel_y = -30 - }, -/obj/machinery/light, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bon" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boo" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bop" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boq" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bor" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bos" = ( -/obj/machinery/status_display{ - pixel_y = -30 - }, -/obj/machinery/light, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bot" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bou" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bov" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bow" = ( -/turf/space, -/area/template_noop) -"box" = ( -/turf/space, -/area/template_noop) -"boy" = ( -/turf/space, -/area/template_noop) -"boz" = ( -/turf/space, -/area/template_noop) -"boA" = ( -/turf/space, -/area/template_noop) -"boB" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boC" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boD" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boE" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boF" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch"; - req_access = list(13) - }, -/obj/machinery/mech_sensor{ - dir = 8; - frequency = 1380; - id_tag = "shuttle_dock_south_mech"; - pixel_y = 19 - }, -/turf/simulated/shuttle/floor, -/area/template_noop) -"boG" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boH" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boI" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boJ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boK" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boL" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boM" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boN" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boO" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boP" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boQ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boR" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boS" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boT" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boU" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"boV" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"boW" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boX" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boY" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"boZ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpa" = ( -/turf/space, -/area/template_noop) -"bpb" = ( -/turf/space, -/area/template_noop) -"bpc" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bpd" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bpe" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Shuttle Cargo" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bpf" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bpg" = ( -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bph" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bpi" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Escape Shuttle Infirmary"; - req_access = list(5) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bpj" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bpk" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bpl" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bpm" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Shuttle Cargo" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bpn" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bpo" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bpp" = ( -/turf/space, -/area/template_noop) -"bpq" = ( -/turf/space, -/area/template_noop) -"bpr" = ( -/turf/space, -/area/template_noop) -"bps" = ( -/turf/space, -/area/template_noop) -"bpt" = ( -/turf/space, -/area/template_noop) -"bpu" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpv" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpw" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpx" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpy" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bpz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bpA" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpB" = ( -/obj/machinery/light, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpC" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpD" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpE" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpF" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpG" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/light, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bpH" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpI" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpJ" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpK" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpL" = ( -/obj/machinery/light, -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpM" = ( -/turf/simulated/shuttle/floor, -/area/template_noop) -"bpN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bpO" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bpP" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpQ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpR" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpS" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bpT" = ( -/turf/space, -/area/template_noop) -"bpU" = ( -/turf/space, -/area/template_noop) -"bpV" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bpW" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = -28 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bpX" = ( -/obj/structure/closet/hydrant{ - pixel_x = 30; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bpY" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bpZ" = ( -/obj/machinery/atmospherics/unary/cryo_cell{ - layer = 3.3 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqa" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqb" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqc" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -4; - pixel_y = 0 - }, -/obj/item/weapon/wrench, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqd" = ( -/obj/structure/closet/crate/medical, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/masks{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqe" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqf" = ( -/obj/structure/closet/hydrant{ - pixel_x = -30; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bqg" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = 28 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bqh" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqi" = ( -/turf/space, -/area/template_noop) -"bqj" = ( -/turf/space, -/area/template_noop) -"bqk" = ( -/turf/space, -/area/template_noop) -"bql" = ( -/turf/space, -/area/template_noop) -"bqm" = ( -/turf/space, -/area/template_noop) -"bqn" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bqo" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bqp" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bqq" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqr" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqs" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bqt" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bqu" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bqv" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Infirmary"; - req_access = list(5) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqw" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqx" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqy" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bqz" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bqA" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo" - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bqB" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqC" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqD" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqE" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqF" = ( -/obj/machinery/door/airlock/glass_security{ - name = "Holding Cell"; - req_access = list(2) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bqG" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqH" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqI" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqJ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bqK" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bqL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bqM" = ( -/turf/space, -/area/template_noop) -"bqN" = ( -/turf/space, -/area/template_noop) -"bqO" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqP" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle West Storage"; - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bqQ" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bqR" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqS" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 5 - }, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle Medical"; - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqT" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqU" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqV" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqW" = ( -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_x = 28; - pixel_y = 0 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bqX" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bqY" = ( -/obj/machinery/recharge_station, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bqZ" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/crescent{ - c_tag = "Shuttle East Storage"; - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bra" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brb" = ( -/turf/space, -/area/template_noop) -"brc" = ( -/turf/space, -/area/template_noop) -"brd" = ( -/turf/space, -/area/template_noop) -"bre" = ( -/turf/space, -/area/template_noop) -"brf" = ( -/turf/space, -/area/template_noop) -"brg" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"brh" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bri" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brj" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brk" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brl" = ( -/obj/machinery/iv_drip, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brm" = ( -/obj/structure/bed/roller, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brn" = ( -/obj/structure/bed/roller, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bro" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brp" = ( -/obj/machinery/atmospherics/unary/cryo_cell{ - layer = 3.3 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brq" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brr" = ( -/obj/machinery/recharge_station, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"brs" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"brt" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bru" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brv" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"brw" = ( -/obj/structure/bed/chair, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"brx" = ( -/obj/structure/bed/chair, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bry" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"brz" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"brA" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brB" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brC" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brD" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brE" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"brF" = ( -/turf/space, -/area/template_noop) -"brG" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brH" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"brI" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"brJ" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brK" = ( -/obj/machinery/iv_drip, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brL" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brM" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brN" = ( -/obj/structure/bed/roller, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brO" = ( -/obj/structure/bed/roller, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"brP" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brQ" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"brR" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"brS" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"brT" = ( -/turf/space, -/area/template_noop) -"brU" = ( -/turf/space, -/area/template_noop) -"brV" = ( -/turf/space, -/area/template_noop) -"brW" = ( -/turf/space, -/area/template_noop) -"brX" = ( -/turf/space, -/area/template_noop) -"brY" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"brZ" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsa" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bsb" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bsc" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsd" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bse" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsf" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsg" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsh" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsi" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsj" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_x = -28 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bsk" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bsl" = ( -/obj/structure/closet/hydrant{ - pixel_x = 30; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bsm" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsn" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bso" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bsp" = ( -/obj/machinery/door/window/brigdoor{ - name = "Holding Cell"; - req_access = list(2) - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bsq" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bsr" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bss" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bst" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bsu" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bsv" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsw" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bsx" = ( -/turf/space, -/area/template_noop) -"bsy" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsz" = ( -/obj/structure/shuttle/engine/propulsion, +/area/shuttle/escape/transit) +"aWP" = ( /turf/template_noop, -/area/template_noop) -"bsA" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"bsB" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsC" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsD" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsE" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsF" = ( -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsG" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper_0"; - dir = 8 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsH" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsI" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"bsJ" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"bsK" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsL" = ( -/turf/space, -/area/template_noop) -"bsM" = ( -/turf/space, -/area/template_noop) -"bsN" = ( -/turf/space, -/area/template_noop) -"bsO" = ( -/turf/space, -/area/template_noop) -"bsP" = ( -/turf/space, -/area/template_noop) -"bsQ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bsR" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsS" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"bsT" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"bsU" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsV" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bsW" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -4; - pixel_y = 0 - }, -/obj/structure/closet/walllocker/emerglocker/south, -/obj/machinery/vending/wallmed1{ - layer = 3.3; - name = "Emergency NanoMed"; - pixel_x = -28; - pixel_y = 0 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsX" = ( -/obj/structure/closet/crate/medical, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/weapon/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/weapon/storage/box/masks{ - pixel_x = 0; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/item/weapon/reagent_containers/blood/empty, -/obj/machinery/light, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bsZ" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/simulated/shuttle/floor{ - icon_state = "floor3" - }, -/area/template_noop) -"bta" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btb" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"btc" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/machinery/light, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"btd" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/shuttle/floor{ - icon_state = "floor2" - }, -/area/template_noop) -"bte" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"btg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bth" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"bti" = ( -/obj/structure/closet/walllocker/emerglocker/south, -/obj/machinery/hologram/holopad, -/turf/simulated/shuttle/floor{ - icon_state = "floor7" - }, -/area/template_noop) -"btj" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btk" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btl" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"btm" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"btn" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bto" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btp" = ( -/turf/space, -/area/template_noop) -"btq" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btr" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bts" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btt" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btu" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"bty" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btz" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btA" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btB" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btC" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btD" = ( -/turf/space, -/area/template_noop) -"btE" = ( -/turf/space, -/area/template_noop) -"btF" = ( -/turf/space, -/area/template_noop) -"btG" = ( -/turf/space, -/area/template_noop) -"btH" = ( -/turf/space, -/area/template_noop) -"btI" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btJ" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btK" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btM" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"btN" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btO" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/wall, -/area/template_noop) -"btQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btR" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btT" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btU" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btV" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"btW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btX" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/template_noop) -"btZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/wall, -/area/template_noop) -"bua" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bub" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"buc" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bud" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bue" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buf" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bug" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buh" = ( -/turf/space, -/area/template_noop) -"bui" = ( -/turf/space, -/area/template_noop) -"buj" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buk" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bul" = ( -/obj/machinery/light/spot, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bum" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bun" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buo" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"bup" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buq" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"bur" = ( -/obj/machinery/light/spot, -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"bus" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"but" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buu" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buv" = ( -/turf/space, -/area/template_noop) -"buw" = ( -/turf/space, -/area/template_noop) -"bux" = ( -/turf/space, -/area/template_noop) -"buy" = ( -/turf/space, -/area/template_noop) -"buz" = ( -/turf/space, -/area/template_noop) -"buA" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buB" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buC" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buD" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buE" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buF" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buG" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buH" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"buI" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buJ" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buK" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buL" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buM" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buN" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buO" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buP" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buQ" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/template_noop, -/area/template_noop) -"buR" = ( -/turf/simulated/shuttle/wall, -/area/template_noop) -"buS" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buT" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buU" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buV" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buW" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buX" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buY" = ( -/turf/unsimulated/floor{ - name = "plating" - }, -/area/template_noop) -"buZ" = ( -/turf/space, -/area/template_noop) +/area/space) (1,1,1) = {" aaa @@ -28678,14 +22532,14 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -28731,61 +22585,61 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -28837,9 +22691,9 @@ aaS abb abe aaQ -aaT -aaW -aaV +aaY +aaY +aaY aaR aaY aaU @@ -28925,24 +22779,24 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaP aaP aaP aaP aaP aaP -ahU +ahM aaM aaM aaM @@ -28988,8 +22842,8 @@ aaM aaM aaM aaM -aEG -aid +aDQ +ahV aaP aaP aaP @@ -29042,7 +22896,7 @@ aaP aaP aaP aaP -ahU +ahM aaM aaM aaM @@ -29070,33 +22924,33 @@ aad aaS abb abe -aaQ -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aha +aha +aha +aha +aha +aaY +aaY +aaY aaS abb abe @@ -29179,10 +23033,10 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM aaP aaP aaP @@ -29194,18 +23048,18 @@ aaP aaP aaP aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU -ahU -ahU -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -29245,61 +23099,61 @@ aaM aaM aaM aaM -aEG -aid +aDQ +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM -ahU +ahM aaM aaM aaM @@ -29327,33 +23181,33 @@ aae aaT aaW aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aha +aWO +aWO +aWO +aha +aWN +aaY aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ aaT aaW aaV @@ -29436,25 +23290,25 @@ aaM aaM aaM aaM -ahU +ahM aaP aaP aaP aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP aaP aaP @@ -29462,9 +23316,9 @@ aaP aaP aaP aaP -ahU -ahU -ahU +ahM +ahM +ahM aaM aaM aaM @@ -29502,61 +23356,61 @@ aaM aaM aaM aaM -aEG -aid +aDQ +ahV aaP -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM -aFr -aFr -aid -aid -aid -aid -aHJ -aHJ -aHJ -aHJ -aHJ -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +aEt +aEt +ahV +ahV +ahV +ahV +aGz +aGz +aGz +aGz +aGz +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM -ahU +ahM aaM aaM aaM @@ -29584,32 +23438,32 @@ aaf aaU abd aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aha +aha +aWO +aWO +aWO +aha +aWN +aaY aaY aaU abd @@ -29628,10 +23482,10 @@ abe aaR abc aaS -agQ +agN acL -ahb -afF +agY +afE acJ acM aaX @@ -29693,35 +23547,35 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP aaP aaP -ahU +ahM aaM aaM aaM @@ -29759,61 +23613,61 @@ aaM aaM aaM aaM -aEG -aid +aDQ +ahV aaP -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM -aFr -aFr -aid -aid -aHJ -aHJ -aKw -aKK -aLk -aHJ -aHJ -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +aEt +aEt +ahV +ahV +aGz +aGz +aIV +aJj +aJJ +aGz +aGz +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM -ahU +ahM aaM aaM aaM @@ -29841,33 +23695,33 @@ aag aaV aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aha +aha +aha +aha +aha +aha +aha +aha +aha +aha +aha +aWO +aWO +aWO +aWO +aha +aWN +aaY +aaY aaV aaR aaY @@ -29885,11 +23739,11 @@ aaX aaX aaT aaW -ajr -ajx -ajF -ajO -ajy +aji +ajo +ajv +ajC +ajp acI aaR aaY @@ -29950,35 +23804,35 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -apx -apx -apx -apx -apx -apx -apx -apx -apx -apx -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +aoY +aoY +aoY +aoY +aoY +aoY +aoY +aoY +aoY +aoY +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -30016,40 +23870,40 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM -aFr -aid -aHJ -aHJ -aKe -aKf -aKf -aKf -aLR -aHJ -aHJ -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +aEt +ahV +aGz +aGz +aIE +aIF +aIF +aIF +aKq +aGz +aGz +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -30059,18 +23913,18 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -30099,31 +23953,31 @@ aaW aaV aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR +aWN +aWN +aWN +aWN +aWN +aWN +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +aha aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ aaT aaW aaV @@ -30142,12 +23996,12 @@ aaV abd abe aaQ -ajs -ajy -ajG -ajP -ajZ -afp +ajj +ajp +ajw +ajD +ajM +afo abb abe aaQ @@ -30207,35 +24061,35 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -apx -apE -apR -aqb -apx -aqo -aqz -aqJ -aqX -apx -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +aoY +apf +aps +apC +aoY +apN +apX +aqh +aqv +aoY +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -30273,13 +24127,13 @@ aaM aaM aaM aaM -aEH +aDR aaP aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -30287,26 +24141,26 @@ aaM aaM aaM aaM -aid -aHJ -aJG -aKf -aKf -aKf -aLl -aKf -aLR -aHJ -aHJ -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +aGz +aIh +aIF +aIF +aIF +aJK +aIF +aKq +aGz +aGz +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -30317,17 +24171,17 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -30355,32 +24209,32 @@ aaa aaX aaZ abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR aaY -afn -adA -afM -acE -adh -acH -adB -aeR -afo -acG +aWN aha -acF -ahd -ahk -aho -afF -abd +aha +aha +aha +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +aaY aba aaX aaZ @@ -30399,11 +24253,11 @@ abe aaS aaR aaY -aji -ajz -ajH -ajQ -ajz +aja +ajq +ajx +ajE +ajq acM aaX aaZ @@ -30464,37 +24318,37 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -apx -apF -apS -aqc -apx -aqs -apS -apS -apS -apx -apx -apx -apx -apx -apx -apx -apx -apx -aid -aid -aid +ahV +ahV +ahV +ahV +aoY +apg +apt +apD +aoY +apR +apt +apt +apt +aoY +aoY +aoY +aoY +aoY +aoY +aoY +aoY +aoY +ahV +ahV +ahV aaP -ahU -ahU -ahU +ahM +ahM +ahM aaM aaM aaM @@ -30530,12 +24384,12 @@ aaM aaM aaM aaM -aEH +aDR aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -30544,21 +24398,21 @@ aaM aaM aaM aaM -aid -aHJ -aHJ -aKg -aKf -aKf -aKf -aKf -aKf -aMM -aHJ -aid -aid -aid -aid +ahV +aGz +aGz +aIG +aIF +aIF +aIF +aIF +aIF +aLl +aGz +ahV +ahV +ahV +ahV aaM aaM aaM @@ -30584,7 +24438,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -30612,32 +24466,32 @@ aai aaY aaU aaR -aaY -aaU -abd -adA -acE -adh -acH -adB -aeR -afo -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -aem -aaV +aWN +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +aha aaR aaY aaU @@ -30656,12 +24510,12 @@ aaW aaT aaW aaV -ahp -afq -afF -ahb +ahm +afp +afE +agY acK -ahp +ahm aaY aaU abd @@ -30721,39 +24575,39 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -apx -apE -apS -apS -aqm -apS -apS -apS -apS -apS -arq -apS -apS -apS -arq -apS -aqo -apx -aid -aid -aid +ahV +ahV +ahV +ahV +aoY +apf +apt +apt +apL +apt +apt +apt +apt +apt +aqO +apt +apt +apt +aqO +apt +apN +aoY +ahV +ahV +ahV aaP aaP aaP -ahU -ahU -ahU +ahM +ahM +ahM aaM aaM aaM @@ -30787,12 +24641,12 @@ aaM aaM aaM aaM -aEH +aDR aaP -aid -aFr -aFG -aid +ahV +aEt +aEG +ahV aaM aaM aaM @@ -30802,20 +24656,20 @@ aaM aaM aaM aaM -aid -aHJ -aKh -aKf -aKL -aKf -aKf -aKf -aMN -aHJ -aid -aid -aid -aid +ahV +aGz +aIH +aIF +aJk +aIF +aIF +aIF +aLm +aGz +ahV +ahV +ahV +ahV aaM aaM aaM @@ -30841,7 +24695,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -30869,32 +24723,32 @@ aaj aaZ abc aaS -abb -abe -acH -adB -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -aem -aba +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha aaX aaZ abc @@ -30978,39 +24832,39 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -apx -apG -apS -aqd -apx -apS -apS -apS -apS -apS -arr -apS -apS -apS -apS -apS -asU -apx -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +aoY +aph +apt +apE +aoY +apt +apt +apt +apt +apt +aqP +apt +apt +apt +apt +apt +asr +aoY +ahV +ahV +ahV +ahV +ahV aaP aaP aaP -ahU +ahM aaM aaM aaM @@ -31044,35 +24898,35 @@ aaM aaM aaM aaM -aEH +aDR aaP -aid -aFs -aFr -aFr +ahV +aEu +aEt +aEt aaM aaM aaM aaM aaM -aHk -aHD -aHD -aIE -aGZ -aGZ -aGZ -aKf -aKf -aLm -aLS -aMn -aHJ -aHJ -aid -aid -aid -aid +aGd +aGt +aGt +aHi +aFT +aFT +aFT +aIF +aIF +aJL +aKr +aKM +aGz +aGz +ahV +ahV +ahV +ahV aaM aaM aaM @@ -31083,9 +24937,9 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -31098,7 +24952,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -31126,32 +24980,32 @@ aak aba aaX aaZ -abc -acE -adh -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -acK -afF +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha abd aba aaX @@ -31162,12 +25016,12 @@ abb aab aaX aaZ -aeS -afp -agQ +aeR +afo +agN acL -ahb -ahp +agY +ahm abc aaS abb @@ -31235,39 +25089,39 @@ aaM aaM aaM aaM -ahU +ahM aaP aaP -aid -aid -aid -apx -apE -apS -aqe -apx -apS -apS -aqK -apx -apx -apx -apx -arF -apS -apS -apS -apS -apx -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +aoY +apf +apt +apF +aoY +apt +apt +aqi +aoY +aoY +aoY +aoY +ard +apt +apt +apt +apt +aoY +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -31301,33 +25155,33 @@ aaM aaM aaM aaM +aDR +aaP +ahV +ahV aEH -aaP -aid -aid -aFH -aFr +aEt aaM aaM aaM aaM -aGV -aHl -aHE -aIg -aIF -aIg -aHn -aGZ -aKx -aKx -aHJ -aHJ -aHJ -aHJ -aid -aid -aid +aFP +aGe +aGu +aGR +aHj +aGR +aGg +aFT +aIW +aIW +aGz +aGz +aGz +aGz +ahV +ahV +ahV aaM aaM aaM @@ -31340,9 +25194,9 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -31355,7 +25209,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -31383,33 +25237,33 @@ aal abb abe aaQ -aaT -acF -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahr -aeS -afp +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +afo abb abe aaQ @@ -31419,12 +25273,12 @@ aaV aai aaQ aaT +aii +aio +aiz +aiI aiq -aiw -aiH -aiQ -aiy -aem +ael aaT aaW aaV @@ -31492,40 +25346,40 @@ aaM aaM aaM aaM -ahU -ahU +ahM +ahM aaP -aid -aid -aid -apx -apx -apx -apx -apx -apS -apS -aqL -aqY -aiB -aiB -apx -arG -arY -asn -arG -asV -apx -aiB -aiB -aid -aid -aid -aid -aid +ahV +ahV +ahV +aoY +aoY +aoY +aoY +aoY +apt +apt +aqj +aqw +ait +ait +aoY +are +arw +arL +are +ass +aoY +ait +ait +ahV +ahV +ahV +ahV +ahV aaP -ahU -ahU +ahM +ahM aaM aaM aaM @@ -31558,32 +25412,32 @@ aaM aaM aaM aaM -aEH +aDR aaP aaP -aid -aid +ahV +ahV aaM aaM aaM aaM aaM -aGW -aHm -aHo -aHo -aHo -aHo -aHo -aHn -aHo -aHo -aGZ -aid -aid -aid -aid -aiB +aFQ +aGf +aGh +aGh +aGh +aGh +aGh +aGg +aGh +aGh +aFT +ahV +ahV +ahV +ahV +ait aaM aaM aaM @@ -31603,16 +25457,16 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -31640,32 +25494,32 @@ aam abc aaS abb -abe -acG -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahr +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha acK abc aaS @@ -31676,11 +25530,11 @@ aaT aag aba aaX -air -aix -aiI -aiR -ajb +aij +aip +aiA +aiJ +aiT acJ abe aaQ @@ -31750,39 +25604,39 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -apx -apT -aqf -apx -apS -apS -aqM -aqZ -aiB +ahV +ahV +ahV +ahV +aoY +apu +apG +aoY +apt +apt +aqk +aqx +ait aaM aaM aaM -arZ -apS -asH +arx +apt +asf aaM aaM aaM -aiB -aiB -aiB -aid -aid -aid +ait +ait +ait +ahV +ahV +ahV aaP aaP -ahU +ahM aaM aaM aaM @@ -31815,31 +25669,31 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid +ahV +ahV aaM aaM aaM aaM aaM -aGW -aHn -aHo -aIh -aHo -aHo -aHo -aHo -aHn -aGZ -aGZ -aid +aFQ +aGg +aGh +aGS +aGh +aGh +aGh +aGh +aGg +aFT +aFT +ahV aaM -alz -alz +ald +ald aaM aaM aaM @@ -31860,16 +25714,16 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM -aid +ahV aaM aaM -ahU +ahM aaM aaM aaM @@ -31897,33 +25751,33 @@ aan abd aba aaX -aaZ -acH -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahu -afF +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +afE abd aba aaX @@ -31933,12 +25787,12 @@ aaS aao aaV aaR -ahH -aiy -aiJ -aiS -ajc -afp +ahz +aiq +aiB +aiK +aiU +afo aaR aaY aaU @@ -32007,39 +25861,39 @@ aaM aaM aaM aaM -ahU +ahM aaP aaP -aid -aid -aid -apx -apU -aqg -apx -apS -apS -aqN -aqZ +ahV +ahV +ahV +aoY +apv +apH +aoY +apt +apt +aql +aqx aaM aaM aaM aaM -arZ -aso -asH +arx +arM +asf aaM aaM aaM aaM aaM -aiB -aid -aid -aid -aid +ait +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -32072,28 +25926,28 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid +ahV +ahV aaM aaM aaM aaM aaM -aGX -aHo -aHF -aHF -aIg -aHo -aJH -aHo -aHn -aGZ -aid -aid +aFR +aGh +aGv +aGv +aGR +aGh +aIi +aGh +aGg +aFT +ahV +ahV aaM aaM aaM @@ -32118,15 +25972,15 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM -ahU +ahM aaM aaM aaM @@ -32154,33 +26008,33 @@ aao abe aaQ aaT -aaW -acI -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahv -agQ +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +aha +agN abe aaQ aaT @@ -32191,9 +26045,9 @@ aaf aaS abb acL +agY +adH ahb -adI -ahe acI acK aaW @@ -32264,40 +26118,40 @@ aaM aaM aaM aaM -ahU -ahU +ahM +ahM aaP -aid -aid -aid -apx -apV -aqh -aqn -apS -apS -apS -ara +ahV +ahV +ahV +aoY +apw +apI +apM +apt +apt +apt +aqy aaM aaM aaM aaM -art -asp -art +aqR +arN +aqR aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU -ahU +ahM +ahM aaM aaM aaM @@ -32329,32 +26183,32 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid +ahV +ahV aaM aaM aaM aaM aaM -aGW -aHo -aHo -aIi -aIg -aHo -aHo -aHo -aKy -aGZ -aid -aid -aid -aiB -aiB -aiB +aFQ +aGh +aGh +aGT +aGR +aGh +aGh +aGh +aIX +aFT +ahV +ahV +ahV +ait +ait +ait aaM aaM aaM @@ -32367,8 +26221,8 @@ aaM aaM aaM aaM -bar -bat +aWJ +aWL aaM aaM aaM @@ -32379,11 +26233,11 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM -ahU +ahM aaM aaM aaM @@ -32411,33 +26265,33 @@ aag aaV aaR aaY -aaU -acJ -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahw -ahe +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +ahb aaV aaR aaY @@ -32522,39 +26376,39 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid +ahV +ahV +ahV +aoY apx -apW -aqi -apx -aqt +apJ +aoY apS -aqO -apx +apt +aqm +aoY aaM aaM aaM -art -art -asq -art -art +aqR +aqR +arO +aqR +aqR aaM aaM aaM aaM aaM -aiB -aid -aid -aid +ait +ahV +ahV +ahV aaP aaP -ahU +ahM aaM aaM aaM @@ -32586,47 +26440,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM -aGW -aHp -aHo -aHF -aIg -aHo -aJI -aJI -aJI -aGZ -aGZ -aGZ -aGZ -aGZ -aGZ -aNl -aNL -aNL -baj -aOG -aOG -aOG -aOG -aOG -aOG -aQJ -aQN -aRf -aOG -aOG -bav +aFQ +aGi +aGh +aGv +aGR +aGh +aIj +aIj +aIj +aFT +aFT +aFT +aFT +aFT +aFT +aLK +aMk +aMk +aWJ +aNd +aNd +aNd +aNd +aNd +aNd +aPg +aPk +aPC +aNd +aNd +aWL aaM aaM aaM @@ -32635,12 +26489,12 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM -ahU +ahM aaM aaM aaM @@ -32668,33 +26522,33 @@ aaf aaU abd aba -aaX -acK -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahx -afq +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +afp aaU abd aba @@ -32714,9 +26568,9 @@ aaY aaU acJ acM -aem -adI -ahe +ael +adH +ahb acI aaR aaY @@ -32778,40 +26632,40 @@ aaM aaM aaM aaM -ahU -ahU +ahM +ahM aaP -aid -aid -apx -apx -apx -apx -apx -apx -aqA -apx -apx +ahV +ahV +aoY +aoY +aoY +aoY +aoY +aoY +apY +aoY +aoY aaM aaM -ars -art -asa -asq -asI -art -atj +aqQ +aqR +ary +arO +asg +aqR +asG aaM aaM aaM aaM -aiB -aid -aid -aid -aid +ait +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -32843,47 +26697,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM -aGW -aHq -aHo -aHF -aIg -aHo -aJJ -aKi -aKz +aFQ +aGj +aGh +aGv +aGR +aGh +aIk +aII +aIY +aFT aGZ -aIo -aIo -aMo -aIo -aIo -aNm -aNM -aNM -aNm -aOH -aPa -aPq -aPE -aPR -aQh -aQh -aQO -aQO -aRv -aRV -aSl +aGZ +aKN +aGZ +aGZ +aLL +aMl +aMl +aLL +aNe +aNx +aNN +aOb +aOo +aOE +aOE +aPl +aPl +aPS +aQr +aQG aaM aaM aaM @@ -32892,12 +26746,12 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -32925,33 +26779,33 @@ aaj aaZ abc aaS -abb -acL -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahr -acM -aem +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +ael aaZ abc aaS @@ -32969,12 +26823,12 @@ aaV aaW aaX aaZ -ajo -ajA -ajI -ajR -aka -afp +ajf +ajr +ajy +ajF +ajN +afo abb abe aaQ @@ -33035,40 +26889,40 @@ aaM aaM aaM aaM -ahU +ahM aaP aaP -aid -aid -apx -apH -apH -apx -aqo -apS -apS -aqP -apx +ahV +ahV +aoY +api +api +aoY +apN +apt +apt +aqn +aoY aaM aaM -art -art -arA -asr -arA -art -art +aqR +aqR +aqY +arP +aqY +aqR +aqR aaM aaM aaM aaM -aiB -aiB -aid -aid -aid +ait +ait +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -33100,47 +26954,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM -aGY -aHr -aHo -aIj -aIg -aHo -aJK -aKj -aKA +aFS +aGk +aGh +aGU +aGR +aGh +aIl +aIJ +aIZ +aFT aGZ -aIo -aIo -aIo -aIo -aIo -aNm -aNN -aNN -aNm -aOI -aPb -aPr -aOG -aPS -aQi -aQi -aQi -aQi -aRw -aRV -aSl +aGZ +aGZ +aGZ +aGZ +aLL +aMm +aMm +aLL +aNf +aNy +aNO +aNd +aOp +aOF +aOF +aOF +aOF +aPT +aQr +aQG aaM aaM aaM @@ -33154,7 +27008,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -33182,32 +27036,32 @@ aac aaR aaY aaU -abd -acM -acL -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -acL -ahe +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha aaV aaR aaY @@ -33226,12 +27080,12 @@ aaW aaY aaS abb -ajt -ajB -ajJ -ajB -ajR -ahp +ajk +ajs +ajz +ajs +ajF +ahm aaY aaU abd @@ -33292,40 +27146,40 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -apx -apI -apI -apx -aqp -apS -apS -aqQ -arb +ahV +ahV +ahV +aoY +apj +apj +aoY +apO +apt +apt +aqo +aqz aaM aaM -art -arH -asb -asb -asb -asW -art +aqR +arf +arz +arz +arz +ast +aqR aaM aaM aaM aaM aaM -aiB -aid -aid -aid +ait +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -33357,47 +27211,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM +aFT +aFT +aFT +aFT +aGh +aGh +aIj +aIj +aIj +aFT aGZ aGZ aGZ -aGZ -aHo -aHo -aJI -aJI -aJI -aGZ -aIo -aIo -aIo -aGZ -aGZ -aNn -aNO -aNO -bak -aOG -aOG -aOG -aOG -aPT -aQi -aQi -aQP -aQi -aRx -aOG -baw +aFT +aFT +aLM +aMn +aMn +aWK +aNd +aNd +aNd +aNd +aOq +aOF +aOF +aPm +aOF +aPU +aNd +aWM aaM aaM aaM @@ -33411,7 +27265,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -33439,32 +27293,32 @@ aad aaS abb abe -aaQ -aaT -acK -acJ -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -ahb -aaZ +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha abc aaS abb @@ -33483,12 +27337,12 @@ aaZ aaX aaT aaW -aiU -ajC -ajK -ajS -akb -ahp +aiM +ajt +ajA +ajG +ajO +ahm aaY aaU abd @@ -33549,40 +27403,40 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -apx -apJ -apS -aqj -apS -apS -aqB -aqR -aqZ +ahV +ahV +ahV +aoY +apk +apt +apK +apt +apt +apZ +aqp +aqx aaM aaM -arA -arI -asb -asb -asb -asX -arA +aqY +arg +arz +arz +arz +asu +aqY aaM aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -33614,51 +27468,51 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM +aFT +aGl +aGw +aFT +aHk +aGh +aGh +aGh +aJa +aFT +aJM aGZ -aHs -aHG -aGZ -aIG -aHo -aHo -aHo -aKB aGZ aLn -aIo -aIo -aMO -aiB -aiB +ait +ait aaM aaM aaM aaM aaM aaM -aOG -aPU -aQi -aQi -aQi -aOG -aOG -aOG -aOG -aOG -aOG -aOG -baz +aNd +aOr +aOF +aOF +aOF +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aWL aaM aaM aaM @@ -33668,7 +27522,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -33697,31 +27551,31 @@ aaW aaV aaR aaY -aaU -aaT -acK -adI -acM -aem -acK -aeS -afp -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -adi -aem -aaQ +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +aha aaT aaW aaV @@ -33740,12 +27594,12 @@ aaQ aaT aaW aaV -ahp -afq -afF +ahm +afp +afE acJ acM -aem +ael aaZ abc aaS @@ -33806,40 +27660,40 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -apx -apK -apX -apx +ahV +ahV +ahV +aoY +apl +apy +aoY +apP +apt +aqa aqq -apS -aqC -aqS -aqZ +aqx aaM aaM -arA -arJ -asb -ass -asb -asY -arA +aqY +arh +arz +arQ +arz +asv +aqY aaM aaM aaM aaM -aXG -aXL -aid -aid -aid +aVx +aVx +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -33871,31 +27725,31 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM +aFT +aGm +aGx +aGV +aGg +aGh +aGh +aGh +aJb +aFT aGZ -aHt -aHH -aIk -aHn -aHo -aHo -aHo -aKC aGZ -aIo -aIo -aIo -aMP -aiB +aGZ +aLo +ait aaM aaM aaM @@ -33903,19 +27757,19 @@ aaM aaM aaM aaM +aNd +aOs aOG +aOF +aOF +aPD aPV -aQj -aQi -aQi -aRg -aRy -aRy -aSm -aRy -aRy -aOG -aOG +aPV +aQH +aPV +aPV +aNd +aNd aaM aaM aaM @@ -33925,7 +27779,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -33953,33 +27807,33 @@ aak aba aaX aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR -afq -afF -acJ -acM -aem -acK -aeS -afp -agQ -acL -ahb -adI -ahe -acI -ahp -afq -aaU -abd +aaY +aWN +aha +aha +aha +aha +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +aaY +aaY aba aaX aaZ @@ -34063,40 +27917,40 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -apx -apx -apx -apx +ahV +ahV +ahV +aoY +aoY +aoY +aoY +apQ +apT +aqb aqr -aqu -aqD -aqT -aqZ +aqx aaM -ars -art -arK -asb -ass -asb -asZ -art -atj +aqQ +aqR +ari +arz +arQ +arz +asw +aqR +asG aaM aaM aaM -aXH -aid -aid -aid -aid +aVA +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -34128,52 +27982,52 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM +aFT +aGn +aGy +aFT +aHl +aGg +aGh +aIK +aJc +aFT aGZ -aHu -aHI aGZ -aIH -aHn -aHo -aKk -aKD aGZ -aIo -aIo -aIo -aMQ -aiB -aiB +aLp +ait +ait aaM aaM aaM aaM -bap -aOG -aOG -aOG -aOG -aQn -aOG -aOG -aRz -aRy -aSn -aRy -aRy -aTi -aOG -baB +aWJ +aNd +aNd +aNd +aNd +aOK +aNd +aNd +aPW +aPV +aQI +aPV +aPV +aRD +aNd +aWL aaM aaM aaM @@ -34182,7 +28036,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -34210,33 +28064,33 @@ aae aaT aaW aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR +aWN +aWN +aWN +aWN +aWN +aWN +aha +aha +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aWO +aha +aha +aaY aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ aaT aaW aaV @@ -34320,40 +28174,40 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aiB +ahV +ahV +ahV +ait aaM aaM -apx -apx -apx -aqE -aqU -arc +aoY +aoY +aoY +aqc +aqs +aqA aaM -art -art -arL -asb -ass -asb -ata -art -art +aqR +aqR +arj +arz +arQ +arz +asx +aqR +aqR aaM aaM aaM -aXI -aXM -aid -aid -aid +aVx +aVx +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -34385,53 +28239,53 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM -aGZ -aGZ -aGZ -aGZ -aGZ -aGZ -aJL -aGZ -aGZ -aGZ -aGZ -aGZ -aJL -aGZ -aGZ -aiB +aFT +aFT +aFT +aFT +aFT +aFT +aIm +aFT +aFT +aFT +aFT +aFT +aIm +aFT +aFT +ait aaM aaM -bal -aOG -aOG -aOG -aPF -aPW -aQk -aPG -aQQ -aOG -aRy -aRy -aRy -aRy -aTb -aRy -aOG -aOG -baD +aWJ +aNd +aNd +aNd +aOc +aOt +aOH +aOd +aPn +aNd +aPV +aPV +aPV +aPV +aRw +aPV +aNd +aNd +aWL aaM aaM aaM @@ -34439,7 +28293,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -34467,33 +28321,33 @@ aam abc aaS abb -abe -aaQ -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aha +aha +aha +aha +aha +aha +aha +aha +aha +aha +aha +aWO +aWO +aWO +aWO +aha +aWN +aaY aaY -aaU -abd -aba -aaX -aaZ abc aaS abb @@ -34577,12 +28431,12 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aiB +ahV +ahV +ahV +ait aaM aaM aaM @@ -34592,25 +28446,25 @@ aaM aaM aaM aaM -art -art -arM -asb -asb -asb -atb -art -art +aqR +aqR +ark +arz +arz +arz +asy +aqR +aqR aaM aaM aaM -aXJ -aXN -aXP -aid -aid +aVx +aVx +aVx +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -34642,12 +28496,12 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -34656,39 +28510,39 @@ aaM aaM aaM aaM +aFT aGZ -aIo -aIo -aIo -aIo aGZ -aLo -aLT -aLo -aLo aGZ -aiB +aGZ +aFT +aJN +aKs +aJN +aJN +aFT +ait aaM aaM aaM -aOJ -aOG -aPs -aPG -aPG -aQl -aPG -aQR -aOG -aQJ -aQN -aRf -aOG -aOG -aOG -aOG -aTC -aSl +aNg +aNd +aNP +aOd +aOd +aOI +aOd +aPo +aNd +aPg +aPk +aPC +aNd +aNd +aNd +aNd +aRW +aQG aaM aaM aaM @@ -34696,7 +28550,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -34724,33 +28578,33 @@ aai aaY aaU abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aha +aha +aWO +aWO +aWO +aha +aWN +aaY +aaY aaY aaU abd @@ -34834,14 +28688,14 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aiB -aiB -aiB +ahV +ahV +ahV +ait +ait +ait aaM aaM aaM @@ -34850,24 +28704,24 @@ aaM aaM aaM aaM -arA -arI -asb -ass -asb -asX -arA +aqY +arg +arz +arQ +arz +asu +aqY aaM aaM aaM aaM -aXK -aXO -aXQ -aXS -aid +aVx +aVx +aVx +aVx +ahV aaP -ahU +ahM aaM aaM aaM @@ -34899,11 +28753,11 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid +ahV +ahV aaM aaM aaM @@ -34913,39 +28767,39 @@ aaM aaM aaM aaM +aFT aGZ -aIo -aIo -aIo -aIo aGZ -aLo -aLo -aLo -aLo -aMO -aiB +aGZ +aGZ +aFT +aJN +aJN +aJN +aJN +aLn +ait aaM aaM aaM -aOK -aPc -aPt -aPG -aPG -aQm -aPG -aPG -aRh -aRA -aRA -aSo -aOG -aPG -aPs -aPG -aRV -aSl +aNh +aNz +aNQ +aOd +aOd +aOJ +aOd +aOd +aPE +aPX +aPX +aQJ +aNd +aOd +aNP +aOd +aQr +aQG aaM aaM aaM @@ -34953,7 +28807,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -34981,33 +28835,33 @@ aao abe aaQ aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaQ -abb -abe -aaQ -aaT -aaW -aaV -aaR +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aWN +aha +aWO +aWO +aWO +aha +aWN +aaY aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb abe aaQ aaT @@ -35091,14 +28945,14 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -aid -aiB +ahV +ahV +ahV +ahV +ahV +ait aaM aaM aaM @@ -35107,24 +28961,24 @@ aaM aaM aaM aaM -arA -arJ -asb -ass -asb -atc -arA +aqY +arh +arz +arQ +arz +asz +aqY aaM aaM aaM aaM -aid -aid -aXR -aid -aid +ahV +ahV +aVx +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -35156,11 +29010,11 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid +ahV +ahV aaM aaM aaM @@ -35170,39 +29024,39 @@ aaM aaM aaM aaM +aFT +aHO aGZ -aJm -aIo -aIo -aIo -aJL +aGZ +aGZ +aIm +aJN +aJN +aKO +aLq aLo -aLo -aMp -aMR -aMP -aiB +ait aaM aaM aaM +aNh +aNA +aNR +aOd +aOd aOK -aPd -aPu -aPG -aPG -aQn -aPG -aPG -aRi -aRB -aRi -aPG -aQn -aPG -aPG -aPG -aRV -aSl +aOd +aOd +aPF +aPY +aPF +aOd +aOK +aOd +aOd +aOd +aQr +aQG aaM aaM aaM @@ -35210,7 +29064,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -35238,33 +29092,33 @@ aal abb abe aaQ -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX -aaZ -aaS -abb -abe -aaQ -aaT -aaW -aaV -aaR aaY -aaS -aaS -abb -abe -aaQ -aaT -aaW -aaV +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aha +aha +aha +aha +aha +aaY +aaY +aaY aaR aaY aaU @@ -35348,14 +29202,14 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -35363,25 +29217,25 @@ aaM aaM aaM aaM -ars -art -art -asb -asb -asb -art -art -atj +aqQ +aqR +aqR +arz +arz +arz +aqR +aqR +asG aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -35413,12 +29267,12 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -35427,39 +29281,39 @@ aaM aaM aaM aaM +aFT aGZ -aIo -aIo -aIo -aIo aGZ -aLo -aLo -aLo -aLo -aMQ -aiB +aGZ +aGZ +aFT +aJN +aJN +aJN +aJN +aLp +ait aaM aaM aaM -aOK -aPe -aPt +aNh +aNB +aNQ +aOd +aOd +aOH +aOd +aOd aPG -aPG -aQk -aPG -aPG -aRj -aRC -aRC -aSo -aOG -aPG -aPv -aPG -aRV -aSl +aPZ +aPZ +aQJ +aNd +aOd +aNS +aOd +aQr +aQG aaM aaM aaM @@ -35467,7 +29321,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -35496,24 +29350,24 @@ aaW aaV aaR aaY -aaU -abd -aba -aaX -aaZ -abc -aaS -abb -abe -aaT -aaW -aaV -aaR aaY -aaU -abd -aba -aaX +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY +aaY aaT aaT aaW @@ -35605,40 +29459,40 @@ aaM aaM aaM aaM -ahU +ahM aaP -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM aaM -art -art -art -asc -ast -asJ -art -art -art +aqR +aqR +aqR +arA +arR +ash +aqR +aqR +aqR aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -35670,13 +29524,13 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -35684,39 +29538,39 @@ aaM aaM aaM aaM +aFT aGZ -aIo -aIo -aIo -aIo aGZ -aLp -aLU -aLo -aLo aGZ -aiB +aGZ +aFT +aJO +aKt +aJN +aJN +aFT +ait aaM aaM aaM -aOL -aPf -aPv -aPG -aPG -aQl -aPG -aQS -aOG -aQJ -aQN -aRf -aOG -aOG -aOG -aOG -aTC -aSl +aNi +aNC +aNS +aOd +aOd +aOI +aOd +aPp +aNd +aPg +aPk +aPC +aNd +aNd +aNd +aNd +aRW +aQG aaM aaM aaM @@ -35724,7 +29578,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -35862,15 +29716,15 @@ aaM aaM aaM aaM -ahU +ahM aaP aaP aaP aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -35878,24 +29732,24 @@ aaM aaM aaM aaM -art -art -asd -asu -asK -art -art +aqR +aqR +arB +arS +asi +aqR +aqR aaM aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -35927,53 +29781,53 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM -aGZ -aGZ -aGZ -aGZ -aGZ -aKl -aGZ -aGZ -aGZ -aGZ -aJL -aGZ -aGZ -aiB +aFT +aFT +aFT +aFT +aFT +aIL +aFT +aFT +aFT +aFT +aIm +aFT +aFT +ait aaM aaM -bam -aOG -aOG -aOG -aPH -aPH -aQm -aPG -aQT -aOG -aRD -aRF -aRF -aSM -aRF -aTj -aOG -aOG -baE +aWK +aNd +aNd +aNd +aOe +aOe +aOJ +aOd +aPq +aNd +aQa +aQc +aQc +aRh +aQc +aRE +aNd +aNd +aWM aaM aaM aaM @@ -35981,7 +29835,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -36042,7 +29896,7 @@ aak aaa aaj aam -aie +ahW aaM aaM aaM @@ -36119,16 +29973,16 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM aaP -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -36136,23 +29990,23 @@ aaM aaM aaM aaM -art -ase -asb -ase -art +aqR +arC +arz +arC +aqR aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -36184,52 +30038,52 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM +aFT +aGW aGZ -aIl -aIo -aIo -aJM -aII -aIl aGZ -aIo -aIo -aIo -aMO -aiB -aiB +aIn +aHm +aGW +aFT +aGZ +aGZ +aGZ +aLn +ait +ait aaM aaM aaM aaM -baq -aOG -aOG -aOG -aOG -aQn -aOG -aOG -aRE +aWK +aNd +aNd +aNd +aNd +aOK +aNd +aNd +aQb +aQc +aQc +aQc +aQc aRF -aRF -aRF -aRF -aTk -aOG -baC +aNd +aWM aaM aaM aaM @@ -36238,7 +30092,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -36379,13 +30233,13 @@ aaM aaM aaM aaM -ahU +ahM aaP aaP -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -36393,23 +30247,23 @@ aaM aaM aaM aaM -art -art -asv -art -art +aqR +aqR +arT +aqR +aqR aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -36441,31 +30295,31 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +aFT +aGX +aHm +aHm aGZ -aIm -aII -aII -aIo -aII -aII -aKl -aIo -aIo -aIo -aMP -aiB +aHm +aHm +aIL +aGZ +aGZ +aGZ +aLo +ait aaM aaM aaM @@ -36473,19 +30327,19 @@ aaM aaM aaM aaM -aOG -aPX -aQo -aQi -aQi -aRg -aRF -aRW -aSp -aSN -aTc -aOG -aOG +aNd +aOu +aOL +aOF +aOF +aPD +aQc +aQs +aQK +aRi +aRx +aNd +aNd aaM aaM aaM @@ -36495,7 +30349,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -36636,13 +30490,13 @@ aaM aaM aaM aaM -ahU -ahU +ahM +ahM aaP aaP aaP -aid -aid +ahV +ahV aaM aaM aaM @@ -36650,23 +30504,23 @@ aaM aaM aaM aaM -art -asf -asw -asL -art +aqR +arD +arU +asj +aqR aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -36698,51 +30552,51 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +aFT +aGY aGZ -aIn -aIo -aIl -aII -aII -aKE +aGW +aHm +aHm +aJd +aFT +aJM aGZ -aLn -aIo -aIo -aMQ -aiB -aiB +aGZ +aLp +ait +ait aaM aaM aaM aaM aaM aaM -aOG -aPY -aQi -aQi -aQU -aOG -aOG -aOG -aOG -aOG -aOG -aOG -baA +aNd +aOv +aOF +aOF +aPr +aNd +aNd +aNd +aNd +aNd +aNd +aNd +aWM aaM aaM aaM @@ -36752,7 +30606,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -36894,36 +30748,36 @@ aaM aaM aaM aaM -ahU -ahU -aid +ahM +ahM +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM aaM aaM -art -asg -asx -asM -art +aqR +arE +arV +ask +aqR aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -36955,47 +30809,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aGZ -aIo -aIo -aIo -aII -aIo -aII -aGZ -aIo -aIo -aIo +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +aFT aGZ aGZ -aNl -aNL -aNL -ban -aOG -aOG -aOG -aOG -aPZ -aQi -aQK -aQi -aRk -aRG -aOG -bax +aGZ +aHm +aGZ +aHm +aFT +aGZ +aGZ +aGZ +aFT +aFT +aLK +aMk +aMk +aWJ +aNd +aNd +aNd +aNd +aOw +aOF +aPh +aOF +aPH +aQd +aNd +aWL aaM aaM aaM @@ -37009,7 +30863,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -37152,35 +31006,35 @@ aaM aaM aaM aaM -ahU -aid +ahM +ahV aaP -aid -aid -aXD +ahV +ahV +aVy aaM aaM aaM aaM aaM aaM -art -ash -asy -aXF -art +aqR +arF +arW +aVz +aqR aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -37212,47 +31066,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +aFT +aGW aGZ -aIl -aIo -aIo -aIo -aIo -aKF aGZ -aIo -aIo -aIo -aIo -aIo -aNm -aNM -aNM -aNm +aGZ +aGZ +aJe +aFT +aGZ +aGZ +aGZ +aGZ +aGZ +aLL +aMl +aMl +aLL +aNj +aND +aNT +aNd +aOx aOM -aPg -aPw -aOG -aQa -aQp -aQi -aQV -aRl -aRH -aRV -aSl +aOF +aPs +aPI +aQe +aQr +aQG aaM aaM aaM @@ -37266,7 +31120,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -37409,35 +31263,35 @@ aaM aaM aaM aaM -ahU -aid -aid -aid -aXB -aXE +ahM +ahV +ahV +ahV +aVx +aVx aaM aaM aaM aaM aaM aaM -art -arA -arA -arA -art +aqR +aqY +aqY +aqY +aqR aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -37469,47 +31323,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aHJ -aHJ -aIo -aIl -aJN -aIl -aIo +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +aGz +aGz aGZ +aGW aIo -aIo -aMq -aIo -aIo -aNm -aNN -aNN -aNm -aON -aPh -aPx -aPI -aQb -aQh -aQh -aQh -aRm -aRI -aRV -aSl +aGW +aGZ +aFT +aGZ +aGZ +aKP +aGZ +aGZ +aLL +aMm +aMm +aLL +aNk +aNE +aNU +aOf +aOy +aOE +aOE +aOE +aPJ +aQf +aQr +aQG aaM aaM aaM @@ -37523,7 +31377,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -37597,19 +31451,19 @@ aaY aaU abd aba -aiK -ajh -akc -aku -aiW -akG -akM -aha -ahF -aiU -ahE -ahH -aji +aiC +aiZ +ajP +akd +aiO +akp +akv +agX +ahx +aiM +ahw +ahz +aja abd aaa aaM @@ -37666,11 +31520,11 @@ aaM aaM aaM aaM -ahU -ahU -aid -aXw -aXC +ahM +ahM +ahV +aVx +aVx aaM aaM aaM @@ -37689,12 +31543,12 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -37726,47 +31580,47 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aHJ -aHJ -aHJ -aGZ -aGZ -aGZ -aGZ -aGZ -aGZ -aGZ -aGZ -aGZ -aNn -aNO -aNO -bao -aOG -aOG -aOG -aOG -aOG -aOG -aQJ -aQN -aRf -aOG -aOG -bay +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +aGz +aGz +aGz +aFT +aFT +aFT +aFT +aFT +aFT +aFT +aFT +aFT +aLM +aMn +aMn +aWK +aNd +aNd +aNd +aNd +aNd +aNd +aPg +aPk +aPC +aNd +aNd +aWM aaM aaM aaM @@ -37780,7 +31634,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -37847,26 +31701,26 @@ aaW aaV aaR aaY -aiT -aiA -aiK -ajh -ajo -ahJ -ahG -ahD -ahN -ahW -ahM -ahP -ahY -ahO -ahR -aia -aig -ahX -ahS +aiL +ais +aiC +aiZ +ajf ahB +ahy +ahv +ahF +ahO +ahE +ahH +ahQ +ahG +ahJ +ahS +ahY +ahP +ahK +aht aaS aao aaM @@ -37924,7 +31778,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -37946,12 +31800,12 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -37983,32 +31837,32 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP -aid -aid -aid -aid -aid -aid -aiB -aiB -aiB +ahV +ahV +ahV +ahV +ahV +ahV +ait +ait +ait aaM aaM aaM @@ -38021,8 +31875,8 @@ aaM aaM aaM aaM -bas -bau +aWK +aWM aaM aaM aaM @@ -38037,7 +31891,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -38104,26 +31958,26 @@ abe aaQ aaT aaW -ahE -ahR -ahR -aia -aig -ahX +ahw +ahJ +ahJ ahS -aif -ahV -ahZ -ahQ -ahN -ahW -ahM -ahP ahY -ahO +ahP +ahK +ahX +ahN ahR -aia -aiz +ahI +ahF +ahO +ahE +ahH +ahQ +ahG +ahJ +ahS +air aaX aam aaM @@ -38181,12 +32035,12 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid +ahV aaM aaM aaM @@ -38202,13 +32056,13 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -38240,26 +32094,26 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -38294,7 +32148,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -38361,26 +32215,26 @@ abb abe aaQ aaT -aiU -ahY -ahO -ahR -aia -aig -ahX -ahS -aif -ahV -ahZ +aiM ahQ -ahN -ahW -ahM -ahP +ahG +ahJ +ahS ahY -ahO +ahP +ahK +ahX +ahN ahR -aiT +ahI +ahF +ahO +ahE +ahH +ahQ +ahG +ahJ +aiL aba aaj aaM @@ -38438,13 +32292,13 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -38459,13 +32313,13 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaP aaP -ahU +ahM aaM aaM aaM @@ -38497,25 +32351,25 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP aaP aaP -aid -aid +ahV +ahV aaM aaM aaM @@ -38551,7 +32405,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -38610,34 +32464,34 @@ aaS abb abe aaQ -ahK +ahC +ahL ahT -aib -aih -aic -aim -ais -aiz -aiV -aif -ahV ahZ -ahQ -ahN -ahW -ahM -ahP -ahY -ahO -ahR -aia -aig +ahU +aie +aik +air +aiN ahX +ahN +ahR +ahI +ahF +ahO +ahE +ahH +ahQ +ahG +ahJ ahS -aif -ahV -ahZ -ahD +ahY +ahP +ahK +ahX +ahN +ahR +ahv aaQ aah aaM @@ -38695,14 +32549,14 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -38715,14 +32569,14 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaP -ahU -ahU +ahM +ahM aaM aaM aaM @@ -38754,8 +32608,8 @@ aaM aaM aaM aaM -aEH -aid +aDR +ahV aaP aaP aaP @@ -38808,7 +32662,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -38841,15 +32695,15 @@ aas abj aaw abh +adS +aem +aeM +adY +afq adT -aen -aeN -adZ -afr -adU -adW -aec adV +aeb +adU abj aau abl @@ -38866,35 +32720,35 @@ abd aba aaX aaZ -ahB -ahL -ahP -ahY -ahO -ahR -aia -aiz -ahI -ahW -ahP -ahZ +aht +ahD +ahH ahQ -ahN -ahW -ahM -ahP -ahY +ahG +ahJ +ahS +air +ahA ahO +ahH ahR -aia -ahP -ahY +ahI +ahF ahO -ahR -aia -aig -ahX -aiV +ahE +ahH +ahQ +ahG +ahJ +ahS +ahH +ahQ +ahG +ahJ +ahS +ahY +ahP +aiN abc aal aaM @@ -38952,13 +32806,13 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -38972,13 +32826,13 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaP -ahU +ahM aaM aaM aaM @@ -39011,61 +32865,61 @@ aaM aaM aaM aaM -aEH -aEH -aEH -aEH -aEH -aEH -aEH -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +aDR +aDR +aDR +aDR +aDR +aDR +aDR +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -39098,15 +32952,15 @@ aat abk abf abi -adU -aeo +adT +aen +aet +aeS +aet +aen +aex aeu -aeT -aeu -aeo -aey -aev -adW +adV abk aav aaq @@ -39123,35 +32977,35 @@ aaS abb abe aaQ -ahC -ahM -ahV -ahZ -ahQ +ahu +ahE ahN -ahW -ahM -ahW +ahR +ahI +ahF +ahO +ahE +ahO +ahH ahP -ahX -aia -aig -ahX ahS -aif -ahV -ahZ -ahQ +ahY +ahP +ahK +ahX ahN -ahW -aig +ahR +ahI +ahF +ahO +ahY +ahP +ahK ahX -ahS -aif -ahJ -ahG -ahD -als +ahB +ahy +ahv +akY aaT aag aaM @@ -39209,12 +33063,12 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid +ahV aaM aaM aaM @@ -39230,12 +33084,12 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaP aaP aaP -ahU +ahM aaM aaM aaM @@ -39355,15 +33209,15 @@ aau abl abg abm -adV -aep +adU +aeo +aeu aev -aew +aeu +aeo +aey aev -aep -aez -aew -adX +adW abl aaw aar @@ -39380,34 +33234,34 @@ aaZ abc aaS abb -ahD -ahN -ahO -ahR -aia -aig -ahX -ahS -aia -ahX -ahQ -ahN -ahW -ahM -ahP -ahY -ahO -ahR -aia -aig -ahX -ahR -aia -aig -ahX -ahS -aif +ahv +ahF +ahG ahJ +ahS +ahY +ahP +ahK +ahS +ahP +ahI +ahF +ahO +ahE +ahH +ahQ +ahG +ahJ +ahS +ahY +ahP +ahJ +ahS +ahY +ahP +ahK +ahX +ahB abb abe aae @@ -39466,7 +33320,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -39488,11 +33342,11 @@ aaM aaM aaM aaM -aid -aid -aid -aid -ahU +ahV +ahV +ahV +ahV +ahM aaM aaM aaM @@ -39612,15 +33466,15 @@ aav aaq abh abj -adW -aeq -aew +adV +aep aev +aeu +aev +aep +aeS aew -aeq -aeT -aex -adY +adX aaq abf aas @@ -39637,34 +33491,34 @@ aaQ aaT aaW aaV -ahE -ahO -ahS -aif -ahV -ahZ -ahQ -ahN -ahW -ahP -ahW -ahP -ahR -aia -aig +ahw +ahG +ahK ahX -ahS -aif -ahV -ahZ -ahQ -aif -ahV -ahZ -ahQ ahN -ahW +ahR +ahI ahF +ahO +ahH +ahO +ahH +ahJ +ahS +ahY +ahP +ahK +ahX +ahN +ahR +ahI +ahX +ahN +ahR +ahI +ahF +ahO +ahx aaV aaR aaf @@ -39723,33 +33577,33 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -39869,15 +33723,15 @@ aaw aar abi abk -adX -aer +adW +aeq +aew +aeN +aew +aeq +aeT aex -aeO -aex -aer -aeU -aey -aea +adZ aar abg aat @@ -39894,34 +33748,34 @@ abb abe aaQ aaT -ahF -ahP -ahW -ahM -ahP -ahY +ahx +ahH ahO -ahR -aia -ahX -aia -ahX -ahV -ahZ +ahE +ahH ahQ -ahN -ahW -ahM -ahP -ahY -ahO -ahX +ahG +ahJ ahS -aif -ahV -ahZ +ahP +ahS +ahP +ahN +ahR +ahI +ahF +ahO +ahE +ahH ahQ -als +ahG +ahP +ahK +ahX +ahN +ahR +ahI +akY aaT aaW aac @@ -40126,15 +33980,15 @@ abf aas abm abl -adY -aes -aeO -aez -aeq -aev -aex +adX aer -adZ +aeN +aey +aep +aeu +aew +aeq +adY aas abh aau @@ -40151,34 +34005,34 @@ aaX aaZ abc aaS -ahG -ahQ -ahX -ahS -aif -ahV -ahZ -ahQ -ahN -ahM +ahy +ahI ahP +ahK +ahX +ahN +ahR +ahI +ahF +ahE +ahH +ahQ +ahG +ahJ +ahS ahY -ahO -ahR -aia -aig +ahP +ahK ahX -ahS -aif -ahV -ahZ -ahO +ahN ahR -aia -aig -ahX +ahG +ahJ ahS -ahB +ahY +ahP +ahK +aht aaS abb aab @@ -40383,15 +34237,15 @@ abg aat abh aaw -adZ -aet -aeo -aex -aeT -aev -aeO +adY +aes +aen +aew +aeS aeu -adW +aeN +aet +adV abj abi aav @@ -40408,34 +34262,34 @@ aaT aaW aaV aaR +ahz +ahJ +ahQ +ahG +ahJ +ahS +ahY +ahP +ahO ahH ahR -ahY +ahI +ahF ahO -ahR -aia -aig -ahX -ahW -ahP -ahZ +ahE +ahH ahQ -ahN -ahW -ahM -ahP +ahG +ahJ +ahS ahY -ahO -ahR -aia -aig -ahV -ahZ -ahQ ahN -ahW -ahM -aiU +ahR +ahI +ahF +ahO +ahE +aiM aaR aaY aan @@ -40640,15 +34494,15 @@ abh aaq aaw aaq -adY -aeu -aep -aey -aeU -aew -aeq +adX +aet +aeo +aex +aeT aev -aec +aep +aeu +aeb abk abm aaw @@ -40665,35 +34519,35 @@ aaY aaX aaZ abc -ahI -ahS -ahZ -ahQ -ahN -ahW -ahM -ahP -aia -ahX -aia +ahA +ahK ahR -ahX -ahS -aif -ahV -ahZ -ahQ -ahN -ahW -ahM -ahW -ahM -ahP -ahY +ahI +ahF +ahO +ahE ahH -aji -aiT -aiz +ahS +ahP +ahS +ahJ +ahP +ahK +ahX +ahN +ahR +ahI +ahF +ahO +ahE +ahO +ahE +ahH +ahQ +ahz +aja +aiL +air aaX aam aaM @@ -40897,15 +34751,15 @@ abi aar aas aar -aea -aev -aeq -aez -aeO -aex -aer +adZ +aeu +aep +aey +aeN aew -aed +aeq +aev +aec abl abj abf @@ -40922,35 +34776,35 @@ aba aaY aaU abd -ahJ -ahG -aia -aig -ahX -ahS -aif -ahJ -ahG -ahR -ahW -ahM -ahP -ahY -ahO -ahR -aia -aig -ahX -ahS -aif -ahY -ahO -ahR -aia -aig -ahX -ahS ahB +ahy +ahS +ahY +ahP +ahK +ahX +ahB +ahy +ahJ +ahO +ahE +ahH +ahQ +ahG +ahJ +ahS +ahY +ahP +ahK +ahX +ahQ +ahG +ahJ +ahS +ahY +ahP +ahK +aht aaS aao aaM @@ -41154,15 +35008,15 @@ abm aas aar aas -adZ -aew -aer -aeT -aeo -aey -aes +adY +aev +aeq +aeS +aen aex -aeN +aer +aew +aeM aaq abk abg @@ -41180,34 +35034,34 @@ aaZ abc aaS aaT +ahL ahT -aib -aih -aic -aim +ahZ +ahU +aie +aik ais -aiA -aiK -ahG -ahV -ahZ -ahQ +aiC +ahy ahN -ahW -ahM -ahP -ahY -ahO ahR -aia -aig -ahX -ahS -aif -ahV -ahZ +ahI +ahF +ahO +ahE +ahH ahQ -als +ahG +ahJ +ahS +ahY +ahP +ahK +ahX +ahN +ahR +ahI +akY aaT aag aaM @@ -41411,15 +35265,15 @@ abj aat abg aat -aeb -aex -aes -aeU -aep -aez -aet +aea +aew +aer +aeT +aeo aey -adT +aes +aex +adS aar abl abh @@ -41445,26 +35299,26 @@ aaQ aaT aaW aaV -ahG -ahR -aia -aig -ahX +ahy +ahJ ahS -aif -ahV -ahZ -ahQ -ahN -ahW -ahM -ahP ahY -ahO +ahP +ahK +ahX +ahN ahR -aia -aig ahI +ahF +ahO +ahE +ahH +ahQ +ahG +ahJ +ahS +ahY +ahA aaZ aad aaM @@ -41668,15 +35522,15 @@ abk abg aav abm -aec -aey -aet -aeO -aeq -aeT -aeu -aez aeb +aex +aes +aeN +aep +aeS +aet +aey +aea aas aaq abi @@ -41702,26 +35556,26 @@ aba aaX aaZ abc -aiW -ahR -ahN -ahW -ahM -ahP -ahY -ahO -ahR -aia -aig -ahX -ahS -aif -ahV -ahZ -ahQ -ahN -ahW +aiO +ahJ ahF +ahO +ahE +ahH +ahQ +ahG +ahJ +ahS +ahY +ahP +ahK +ahX +ahN +ahR +ahI +ahF +ahO +ahx aaV aac aaM @@ -41925,15 +35779,15 @@ abl abh aat aaw -aec -aez -aeu -aeo -aer -aeU -aev +aeb +aey +aet +aen +aeq aeT -aeN +aeu +aeS +aeM abh aar abm @@ -41959,26 +35813,26 @@ abb abe aaQ aaT -aiU +aiM +ahw +ahz +aja +aiL +air +ahA +aiN +ahX +ahN +ahR +ahI +ahF +ahO ahE ahH -aji -aiT -aiz -ahI -aiV -aif -ahV -ahZ ahQ -ahN -ahW -ahM -ahP -ahY -ahO -ahR -aiT +ahG +ahJ +aiL aba aai aaM @@ -42182,15 +36036,15 @@ aaq abi aau abf -aed -adV +aec +adU +aeu +aeo +aer +aeN aev -aep -aes -aeO -aew -adW -adT +adV +adS abi aas abj @@ -42223,19 +36077,19 @@ aaS abb abe aaQ -ahK +ahC +ahL ahT -aib -aih -aic -aim -ais -afM -ahI -aiV +ahZ +ahU +aie +aik +afL +ahA +aiN +aht ahB -ahJ -ahG +ahy abe aae aaM @@ -42440,13 +36294,13 @@ abm aav abg aat -adW +adV +aev +aep +aes +aen aew -aeq -aet -aeo -aex -adX +adW aav abm aat @@ -42697,13 +36551,13 @@ abj aaw abh aau -aen -aeN -adZ -afr -adU -adW -aec +aem +aeM +adY +afq +adT +adV +aeb aaw abj aau @@ -44256,45 +38110,45 @@ aaL aaz aaJ aaM -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn aaM aaM aaM @@ -44513,7 +38367,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abd @@ -44551,7 +38405,7 @@ abd aba aaY aaU -ahq +ahn aaM aaM aaM @@ -44770,7 +38624,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT aaW @@ -44808,7 +38662,7 @@ aaV aaR aaQ aaT -ahq +ahn aaM aaM aaM @@ -45027,7 +38881,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abc @@ -45065,7 +38919,7 @@ aaV aaR aaX aaZ -ahq +ahn aaM aaM aaM @@ -45284,7 +39138,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abd @@ -45322,7 +39176,7 @@ abb abe aaY aaU -ahq +ahn aaM aaM aaM @@ -45541,7 +39395,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abd @@ -45579,7 +39433,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -45798,7 +39652,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU aaW @@ -45817,10 +39671,10 @@ aaY aaY aaY aaY -aic -aic -aic -aic +ahU +ahU +ahU +ahU aaY aaY aaY @@ -45836,7 +39690,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -46055,7 +39909,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abc @@ -46064,21 +39918,21 @@ abe aaY aaU abd -aic -aic -aic -aic -aic -aic -aic -aic -aic -aic -aic -aii -aii -aic -aic +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +aia +aia +ahU +ahU aaY aaY aaY @@ -46093,7 +39947,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -46312,7 +40166,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abd @@ -46321,21 +40175,21 @@ aba abe aaQ aaT -aic -aii -aii -aii -aii -aii -aii -aii -aij -ain -ait -aii -aij -ain -aic +ahU +aia +aia +aia +aia +aia +aia +aia +aib +aif +ail +aia +aib +aif +ahU aaY aaY aaY @@ -46350,7 +40204,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -46569,7 +40423,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU aaW @@ -46578,21 +40432,21 @@ aaR aaZ abc aaS +ahU +ahU +aia +aia +aia +aia +aia +aia aic +aig +aim +ajg +ajl aic -aii -aii -aii -aii -aii -aii -aik -aio -aiu -ajp -aju -aik -aic +ahU aaY aaY aaY @@ -46607,7 +40461,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -46826,7 +40680,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abc @@ -46835,21 +40689,21 @@ abe aaY aaU abd -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -46864,7 +40718,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -47083,7 +40937,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abd @@ -47092,25 +40946,25 @@ aba abe aaQ aaT -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic -aic -aic -aic -aic +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU +ahU +ahU +ahU +ahU aaY aaY aaY @@ -47121,7 +40975,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -47340,7 +41194,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU aaW @@ -47349,25 +41203,25 @@ aaR aaZ abc aaS -aic -aic -aic -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +ahU +ahU +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -47378,7 +41232,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -47597,7 +41451,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abc @@ -47608,24 +41462,24 @@ aaU abd aaY aaY -aic -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic -aic +ahU +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU +ahU aaY aaY aaY @@ -47635,7 +41489,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -47854,7 +41708,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abd @@ -47863,27 +41717,27 @@ aba abe aaQ aaT -aic -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic -aic +ahU +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU +ahU aaY aaY aaX @@ -47892,7 +41746,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -48111,7 +41965,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU aaW @@ -48120,27 +41974,27 @@ aaR aaZ abc aaS -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -48149,7 +42003,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -48368,7 +42222,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abc @@ -48377,27 +42231,27 @@ abe aaY aaU abd -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaQ @@ -48406,7 +42260,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -48625,7 +42479,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abd @@ -48635,26 +42489,26 @@ abe aaQ aaT aaY -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaX @@ -48663,7 +42517,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -48882,7 +42736,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abd @@ -48892,26 +42746,26 @@ abe aaQ aaT aaY -aic -aij -ain -ait -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +aib +aif +ail +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -48920,7 +42774,7 @@ abd aba aaY aaU -ahq +ahn aaM aaM aaM @@ -49011,14 +42865,14 @@ aaM aaM aaM aaM -axc +awy aaM aaM -axc +awy aaM -axc +awy aaM -axc +awy aaM aaM aaM @@ -49139,7 +42993,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT aaW @@ -49149,26 +43003,26 @@ aaZ abc aaS aaY +ahU aic -aik -aio -aiu -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +aig +aim +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaQ @@ -49177,7 +43031,7 @@ aaV aaR aaQ aaT -ahq +ahn aaM aaM aaM @@ -49267,16 +43121,16 @@ aaM aaM aaM aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -49396,7 +43250,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abc @@ -49405,27 +43259,27 @@ aaR aaZ abc aaS +ahU +ahU aic -aic -aik -aio -aiu -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +aig +aim +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaX @@ -49434,7 +43288,7 @@ aaV aaR aaX aaZ -ahq +ahn aaM aaM aaM @@ -49524,16 +43378,16 @@ aaM aaM aaM aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -49653,7 +43507,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abd @@ -49662,27 +43516,27 @@ abe aaY aaU abd -aic -aii -ail -aip -aiv -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +aia +aid +aih +ain +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -49691,7 +43545,7 @@ abb abe aaY aaU -ahq +ahn aaM aaM aaM @@ -49781,16 +43635,16 @@ aaM aaM aaM aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -49910,7 +43764,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ aaW @@ -49919,27 +43773,27 @@ aba abe aaQ aaT -aic -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic -aic +ahU +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU +ahU aaY aaY aaX @@ -49948,7 +43802,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -50038,16 +43892,16 @@ aaM aaM aaM aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -50167,7 +44021,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abc @@ -50178,24 +44032,24 @@ abc aaS aaY aaY -aic -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic -aic +ahU +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU +ahU aaY aaY aaY @@ -50205,7 +44059,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -50223,6 +44077,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -50269,42 +44149,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -50424,7 +44278,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abd @@ -50433,25 +44287,25 @@ abe aaY aaU abd -aic -aic -aic -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +ahU +ahU +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -50462,7 +44316,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -50480,6 +44334,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -50526,42 +44406,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -50681,7 +44535,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ aaW @@ -50690,25 +44544,25 @@ aba aaY aaY aaY -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic -aic -aic -aic -aic +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU +ahU +ahU +ahU +ahU aaY aaY aaY @@ -50719,7 +44573,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -50737,6 +44591,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -50783,42 +44663,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -50938,7 +44792,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abc @@ -50947,21 +44801,21 @@ aaR aaY aaY aaY -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -50976,7 +44830,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -50994,6 +44848,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -51040,42 +44920,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -51195,7 +45049,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abd @@ -51204,21 +45058,21 @@ abe aaY aaY aaY -aic -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -51233,7 +45087,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -51251,6 +45105,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -51297,42 +45177,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -51452,7 +45306,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ aaW @@ -51461,21 +45315,21 @@ aba aaY aaY aaY -aic -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aii -aic +ahU +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ahU aaY aaY aaY @@ -51490,7 +45344,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -51508,6 +45362,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -51554,42 +45434,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -51709,7 +45563,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abc @@ -51718,21 +45572,21 @@ aaR aaY aaY aaY -aic -aic -aic -aic -aic -aic -aic -aic -aic -aic -aic -aii -aii -aic -aic +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +ahU +aia +aia +ahU +ahU aaY aaY aaY @@ -51747,7 +45601,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -51765,6 +45619,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -51811,42 +45691,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -51966,7 +45820,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abd @@ -51985,10 +45839,10 @@ aaY aaY aaY aaY -aic -aic -aic -aic +ahU +ahU +ahU +ahU aaY aaY aaY @@ -52004,7 +45858,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -52022,6 +45876,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -52068,42 +45948,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -52223,7 +46077,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ aaW @@ -52261,7 +46115,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -52279,6 +46133,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -52325,42 +46205,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -52480,7 +46334,7 @@ aaM aaM aaM aaM -ahq +ahn aaY aaU abc @@ -52518,7 +46372,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -52536,6 +46390,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -52582,42 +46462,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axe -avI -avI -ayS -avI -azC -avI -aAs -avI +ave +awA +ave +ave +ayo +ave +ayY +ave +azO +ave aaM aaM aaM @@ -52737,7 +46591,7 @@ aaM aaM aaM aaM -ahq +ahn aaQ aaT abd @@ -52775,7 +46629,7 @@ abb abe aaQ aaT -ahq +ahn aaM aaM aaM @@ -52793,6 +46647,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -52839,42 +46719,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axf -avI -avI -axf -avI -axf -avI -axf -avI +ave +awB +ave +ave +awB +ave +awB +ave +awB +ave aaM aaM aaM @@ -52994,7 +46848,7 @@ aaM aaM aaM aaM -ahq +ahn aaX aaZ abd @@ -53032,7 +46886,7 @@ abd aba aaX aaZ -ahq +ahn aaM aaM aaM @@ -53050,6 +46904,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -53096,42 +46976,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -53251,7 +47105,7 @@ aaM aaM aaM aaM -ahq +ahn aaY abd aaW @@ -53289,7 +47143,7 @@ aaV aaR aaY aaY -ahq +ahn aaM aaM aaM @@ -53307,6 +47161,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -53353,42 +47233,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -53508,7 +47362,7 @@ aaM aaM aaM aaM -ahq +ahn aaY abd abd @@ -53546,7 +47400,7 @@ aaV aaR aaY aaU -ahq +ahn aaM aaM aaM @@ -53564,6 +47418,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -53610,42 +47490,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axd -avI -avI -axd -avI -axd -avI -axd -avI +ave +awz +ave +ave +awz +ave +awz +ave +awz +ave aaM aaM aaM @@ -53765,45 +47619,45 @@ aaM aaM aaM aaM -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn aaM aaM aaM @@ -53821,6 +47675,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -53867,42 +47747,16 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -axg -avI -avI -axg -avI -axg -avI -axg -avI +ave +awC +ave +ave +awC +ave +awC +ave +awC +ave aaM aaM aaM @@ -54078,6 +47932,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -54123,43 +48003,17 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -avI -axe -avI -avI -ayS -avI -azC -avI -aAs -avI +ave +ave +awA +ave +ave +ayo +ave +ayY +ave +azO +ave aaM aaM aaM @@ -54335,6 +48189,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -54380,43 +48260,17 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -aww -axh -avI -aww -ayT -aww -azD -aww -aAt -avI +ave +avS +awD +ave +avS +ayp +avS +ayZ +avS +azP +ave aaM aaM aaM @@ -54592,6 +48446,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -54637,45 +48517,19 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -awx -axi -avI -ayq -axi -azj -axi -aAc -aAu -avI -avI -avI +ave +avT +awE +ave +axM +awE +ayF +awE +azy +azQ +ave +ave +ave aaM aaM aaM @@ -54849,6 +48703,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -54894,45 +48774,19 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -awy -awy -axU -awy -awy -awy -awy -awy -awy -awy -awy -avI +ave +avU +avU +axq +avU +avU +avU +avU +avU +avU +avU +avU +ave aaM aaM aaM @@ -55106,6 +48960,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -55151,45 +49031,19 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -awz -axj -avI -ayr -awy -awy -awy -awy -awy -awy -axj -avI +ave +avV +awF +ave +axN +avU +avU +avU +avU +avU +avU +awF +ave aaM aaM aaM @@ -55363,6 +49217,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -55408,45 +49288,19 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -awA -axk -avI -ays -ayU -azk -azE -aAd -awA -awA -aAW -avI +ave +avW +awG +ave +axO +ayq +ayG +aza +azz +avW +avW +aAs +ave aaM aaM aaM @@ -55620,6 +49474,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -55663,51 +49543,25 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -avI -avI -awB -avI -avI -avI -avI -ayD -ayD -avI -aAv -aAv -avI -avI -avI -avI -avI -avI +ave +ave +ave +avX +ave +ave +ave +ave +axZ +axZ +ave +azR +azR +ave +ave +ave +ave +ave +ave aaM aaM aaM @@ -55877,6 +49731,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -55920,51 +49800,25 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -avN -awk -avW -axl -awl -ayt -ayD -azl -azF -aAe -avW -avW -ayD -aBm -avW -avW -aCd -avI +ave +avj +avG +avs +awH +avH +axP +axZ +ayH +azb +azA +avs +avs +axZ +aAI +avs +avs +aBz +ave aaM aaM aaM @@ -56134,6 +49988,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -56177,6 +50057,25 @@ aaM aaM aaM aaM +ave +ave +ave +avs +avs +avs +axQ +axZ +ayI +avs +avs +avs +avs +axZ +aAJ +avs +avs +aBA +ave aaM aaM aaM @@ -56193,67 +50092,22 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -avI -avI -avW -avW -avW -ayu -ayD -azm -avW -avW -avW -avW -ayD -aBn -avW -avW -aCe -avI -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq aaM aaM aaM @@ -56391,6 +50245,32 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM aaM @@ -56434,6 +50314,25 @@ aaM aaM aaM aaM +ave +avk +avH +avs +avs +avs +axR +axZ +ayJ +avs +avs +avs +avs +axZ +aAK +avs +avs +aBB +ave aaM aaM aaM @@ -56450,67 +50349,22 @@ aaM aaM aaM aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -avI -avO -awl -avW -avW -avW -ayv -ayD -azn -avW -avW -avW -avW -ayD -aBo -avW -avW -aCf -avI -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aCU -aGG -aGG -aGG -aGG -aGG -aIJ -aJn -aJO -aJO -aJx -aKM -aLq -aLq -aMr -aCU +aCq +aFC +aFC +aFC +aFC +aFC +aHn +aHP +aIp +aIp +aHZ +aJl +aJP +aJP +aKQ +aCq aaM aaM aaM @@ -56673,6 +50527,7 @@ aaM aaM aaM aaM +aWP aaM aaM aaM @@ -56716,26 +50571,25 @@ aaM aaM aaM aaM -aaM -avI -avP -avW -avW -avW -avW -ayw -ayD -azo -avW -avW -avW -avW -ayD -aBp -avW -avW -aCg -avI +ave +avl +avs +avs +avs +avs +axS +axZ +ayK +avs +avs +avs +avs +axZ +aAL +avs +avs +aBC +ave aaM aaM aaM @@ -56752,22 +50606,22 @@ aaM aaM aaM aaM -aCU -aGH -aGH -aGH -aGH -aGH -aIK -aJo -aHS -aHS -aKG -aKN -aHS -aHS -aMs -aCU +aCq +aFD +aFD +aFD +aFD +aFD +aHo +aHQ +aGI +aGI +aJf +aJm +aGI +aGI +aKR +aCq aaM aaM aaM @@ -56974,25 +50828,25 @@ aaM aaM aaM aaM -avI -avQ -avW -avW -avW -avW -ayx -ayD -azp -azG -aAf -avW -avW -ayD -aBq -avW -avW -aCh -avI +ave +avm +avs +avs +avs +avs +axT +axZ +ayL +azc +azB +avs +avs +axZ +aAM +avs +avs +aBD +ave aaM aaM aaM @@ -57009,22 +50863,22 @@ aaM aaM aaM aaM -aCU +aCq +aFE +aFU +aFU +aFU +aFU +aHp +aHR aGI -aHa -aHa -aHa -aHa -aIL -aJp -aHS -aHS -aKG -aKO -aLr -aLr -aMt -aCU +aGI +aJf +aJn +aJQ +aJQ +aKS +aCq aaM aaM aaM @@ -57203,53 +51057,53 @@ aaM aaM aaM aaM -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -avI -avR -avW -avW -avW -avW -ayy -avI -ayD -ayD -avI -aAv -aAv -avI -aBr -avW -avW -aCi -avI +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +ave +avn +avs +avs +avs +avs +axU +ave +axZ +axZ +ave +azR +azR +ave +aAN +avs +avs +aBE +ave aaM aaM aaM @@ -57266,22 +51120,22 @@ aaM aaM aaM aaM -aCU -aGJ -aGJ -aGJ -aGJ -aGJ -aIM -aJq +aCq +aFF +aFF +aFF +aFF +aFF +aHq aHS -aHS -aKG -aKM -aLq -aLq -aMr -aCU +aGI +aGI +aJf +aJl +aJP +aJP +aKQ +aCq aaM aaM aaM @@ -57460,53 +51314,53 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -avI -avS -avW -avW -avW -avW -avW -avW -avW -avW -aAg -avW -avW -aAX -avW -avW -avW -aCj -avI +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +ave +avo +avs +avs +avs +avs +avs +avs +avs +avs +azC +avs +avs +aAt +avs +avs +avs +aBF +ave aaM aaM aaM @@ -57523,22 +51377,22 @@ aaM aaM aaM aaM -aCU -aGK -aGK -aGK -aGK -aGK -aIN -aHS -aHS -aHS -aKG -aKP -aHS -aHS -aMs -aCU +aCq +aFG +aFG +aFG +aFG +aFG +aHr +aGI +aGI +aGI +aJf +aJo +aGI +aGI +aKR +aCq aaM aaM aaM @@ -57717,61 +51571,61 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -avI -avT -avW -awC -axm -awD -avW -avW -avW -avW -aAg -avW -avW -aAX -avW -avW -avW -aCk -avI -aCF -aCF -aCF -aCF -aCF -avI -avI -avI +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +ave +avp +avs +avY +awI +avZ +avs +avs +avs +avs +azC +avs +avs +aAt +avs +avs +avs +aBG +ave +aCb +aCb +aCb +aCb +aCb +ave +ave +ave aaM aaM aaM @@ -57780,22 +51634,22 @@ aaM aaM aaM aaM -aCU -aGH -aGH -aGH -aGH -aGH -aIO -aJo -aHS -aHS -aKG -aKQ -aLs -aLs -aMt -aCU +aCq +aFD +aFD +aFD +aFD +aFD +aHs +aHQ +aGI +aGI +aJf +aJp +aJR +aJR +aKS +aCq aaM aaM aaM @@ -57832,18 +51686,18 @@ aaM aaM aaM aaM -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp aaM aaM aaM @@ -57974,61 +51828,61 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -avI -avI -avI -avI -avI -avI -avI -avI -ayD -ayD -avI -aAw -aAK -avI -ayD -ayD -avI -avI -avI -aCG -aCH -aDm -aDx -aCG -aCG -aCG -avI +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +ave +ave +ave +ave +ave +ave +ave +ave +axZ +axZ +ave +azS +aAg +ave +axZ +axZ +ave +ave +ave +aCc +aCd +aCI +aCT +aCc +aCc +aCc +ave aaM aaM aaM @@ -58037,22 +51891,22 @@ aaM aaM aaM aaM -aCU +aCq +aFE +aFU +aFU +aFU +aFU +aHp +aHR +aIq aGI -aHa -aHa -aHa -aHa -aIL -aJp -aJP -aHS -aKG -aDF -aDF -aDF -aDF -aCU +aJf +aDb +aDb +aDb +aDb +aCq aaM aaM aaM @@ -58082,25 +51936,25 @@ aaM aaM aaM aaM -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aUr -aUr -aUr -aUr -aUr -aUr -aUr -aUr -aUr -aUw -aTV +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSL +aSL +aSL +aSL +aSL +aSL +aSL +aSL +aSL +aSQ +aSp aaM aaM aaM @@ -58231,85 +52085,85 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -ard -ari -atr -ari -are -are -are -ari -are -ari -ari -ari -ari -avd -aqV -aqV -aqV +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqB +aqG +asO +aqG +aqC +aqC +aqC +aqG +aqC +aqG +aqG +aqG +aqG +auz +aqt +aqt +aqt +ave +avq avI -avU -awm -avI -axn +ave +awJ +axr axV -ayz -ayV -avW -avW -aAh -avW -avW -aAY -aBs -aBA -aBM -aCl -avI -aCH -aCI -aDn -aCI -aDx -aCG -aEm -aEB -aEB -aEB -aFf -aFf -aFf -aFf -aFf -aEB -aCU -aGJ -aGJ -aGJ -aGJ -aGJ -aIP +ayr +avs +avs +azD +avs +avs +aAu +aAO +aAW +aBi +aBH +ave +aCd +aCe +aCJ +aCe +aCT +aCc +aDB +aDM +aDM +aDM +aEj +aEj +aEj +aEj +aEj +aDM +aCq +aFF +aFF +aFF +aFF +aFF +aHt +aHS +aGI +aGI +aJf aJq -aHS -aHS -aKG -aKR -aLt -aLt -aMu -aCU +aJS +aJS +aKT +aCq aaM aaM aaM @@ -58339,27 +52193,27 @@ aaM aaM aaM aaM -aTV -aUf -aUf -aUf -aUf -aUf -aUf -aUf -aUf -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aWi -aTV -aTV -aTV +aSp +aSz +aSz +aSz +aSz +aSz +aSz +aSz +aSz +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aUC +aSp +aSp +aSp aaM aaM "} @@ -58488,85 +52342,85 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -ard -are -ari -ari -ari -are -ari -atk -arw -atz -arw -arw -arw -aup -arw -are -auF -auO -ava +apV +aqd +aqt +aqt +aqt +aqB +aqC +aqG +aqG +aqG +aqC +aqG +asH +aqU +asW +aqU +aqU +aqU +atL +aqU +aqC +aub +auk +auw +auA +aqt +aqt +aqt ave -aqV -aqV -aqV -avI -avV -avV -avI -avW -avW -avW -avW -avW -avW -aAh -avW -avW -avW -avW -avW -avW -aCm -avI -aCI -aCW -aCZ -aDy -aCI -aCG -aCG -aEB -aEI -aEX -aEK -aEK -aEK -aEK -aEK -aEB -aCU -aGK -aGK -aGK -aGK -aGK -aIQ -aHS -aHS -aHS -aKG -aKS -aHS -aHS -aMv +avr +avr +ave +avs +avs +avs +avs +avs +avs +azD +avs +avs +avs +avs +avs +avs +aBI +ave +aCe +aCs +aCv aCU +aCe +aCc +aCc +aDM +aDS +aEe +aDU +aDU +aDU +aDU +aDU +aDM +aCq +aFG +aFG +aFG +aFG +aFG +aHu +aGI +aGI +aGI +aJf +aJr +aGI +aGI +aKU +aCq aaM aaM aaM @@ -58596,27 +52450,27 @@ aaM aaM aaM aaM -aTV -aUf -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aVH -aVH -aVH -aVH -aVH -aUd -aWg -aUd -aUd -aUd -aTV +aSp +aSz +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aUb +aUb +aUb +aUb +aUb +aSx +aUA +aSx +aSx +aSx +aSp aaM aaM "} @@ -58745,85 +52599,85 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -ard -ari -arw -arN -asi -arw -arw -arN -arw -arw -arw -arw -atU -arw -arw -arw -auB -auG -auP -ava +apV +aqd +aqt +aqt +aqB +aqG +aqU +arl +arG +aqU +aqU +arl +aqU +aqU +aqU +aqU +atr +aqU +aqU +aqU +atX +auc +aul +auw +auA +aqt +aqt +aqt ave -aqV -aqV -aqV -avI -avW -avW -awl -avW -avW -avW -avW -avW -azH -avI -aAx -axw -axw -axw -axw -avW -axY -avI -aCI -aCX -aCZ -aDy -aCI -aCG -aCG -aEB -aEJ -aEY -aEK -aFg -aFh -aFg -aGk -aEB -aCU -aGH -aGH -aGH -aGH -aGH -aIR -aJo -aHS -aHS -aKG -aKT -aLu -aLu -aMw +avs +avs +avH +avs +avs +avs +avs +avs +azd +ave +azT +awS +awS +awS +awS +avs +axu +ave +aCe +aCt +aCv aCU +aCe +aCc +aCc +aDM +aDT +aEf +aDU +aEk +aEl +aEk +aFg +aDM +aCq +aFD +aFD +aFD +aFD +aFD +aHv +aHQ +aGI +aGI +aJf +aJs +aJT +aJT +aKV +aCq aaM aaM aaM @@ -58853,27 +52707,27 @@ aaM aaM aaM aaM -aTV -aUf -aTV -aUJ -aUJ -aUZ -aUZ -aTV -aTV -aTV -aVI -aVI -aVI -aVI -aVI -aWe -aTV -aTV -aTV -aUd -aTV +aSp +aSz +aSp +aTd +aTd +aTt +aTt +aSp +aSp +aSp +aUc +aUc +aUc +aUc +aUc +aUy +aSp +aSp +aSp +aSx +aSp aaM aaM "} @@ -59002,135 +52856,135 @@ aaM aaM aaM aaM -aqx -aqF -aqV -ard -ari -aru -arw -arO -are -asz -asz -asz -asz -arw -are -are -are -are -are +apV +aqd +aqt +aqB +aqG +aqS +aqU +arm +aqC +arX +arX +arX +arX +aqU +aqC +aqC +aqC +aqC +aqC +atV +aqG +aqG +aqG +aqG +aqG auz -ari -ari -ari -ari -ari -avd -aqV -aqV -avI -avX -avW -avW -avW -avW -avW -avW -avW -azI -avI -aAy -aAL -aAZ -aBa -aBB -aBN -avI -avI -aCI -aCY -aCZ -aDy -aCI -aCG -aEm -aEB -aEK -aEY -aFg -aFg -aFw -aFg -aFg -aEB +aqt +aqt +ave +avt +avs +avs +avs +avs +avs +avs +avs +aze +ave +azU +aAh +aAv +aAw +aAX +aBj +ave +ave +aCe +aCu +aCv aCU +aCe +aCc +aDB +aDM +aDU +aEf +aEk +aEk +aEy +aEk +aEk +aDM +aCq +aFE +aFU +aFU +aFU +aFU +aHp +aHR aGI -aHa -aHa -aHa -aHa -aIL -aJp -aHS -aHS -aKG -aKU -aLt -aLt -aMu -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU +aGI +aJf +aJt +aJS +aJS +aKT +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq aaM aaM aaM aaM aaM aaM +aSp +aSz +aSp +aTe +aTe +aTe +aTC +aTM +aTQ aTV -aUf -aTV -aUK -aUK -aUK -aVi -aVs -aVw -aVB -aVJ -aVJ -aVJ -aVV -aVV -aVV -aWh -aWj -aTV -aUf -aTV +aUd +aUd +aUd +aUp +aUp +aUp +aUB +aUD +aSp +aSz +aSp aaM aaM "} @@ -59259,135 +53113,135 @@ aaM aaM aaM aaM -aqx -aqF -aqV -are -arj -arv -arw -arP -ari -ari -ari -ari -ari -ats -arw -arw -arw -arw -arw -arw -are -auH -auQ -avb -avf -ari -avd -aqV -avI -avY -avW -avW -axo +apV +aqd +aqt +aqC +aqH +aqT +aqU +arn +aqG +aqG +aqG +aqG +aqG +asP +aqU +aqU +aqU +aqU +aqU +aqU +aqC +aud +aum +aux +auB +aqG +auz +aqt +ave +avu +avs +avs +awK +axs axW -ayA -ayW -azq -azJ -avI -aAz -aAL -aBa -aBt -aBB -avW -aCn -aCB -aCJ -aCZ -aCZ -aDz -aCI -aCG -aCG -aEB -aEK -aEY -aFg -aFt -aFI -aGa -aFg -aEB -aCU -aGJ -aGJ -aGJ -aGJ -aGJ -aIS -aJq +ays +ayM +azf +ave +azV +aAh +aAw +aAP +aAX +avs +aBJ +aBX +aCf +aCv +aCv +aCV +aCe +aCc +aCc +aDM +aDU +aEf +aEk +aEv +aEI +aEZ +aEk +aDM +aCq +aFF +aFF +aFF +aFF +aFF +aHw aHS -aHS -aKG -aKV -aHS -aHS -aMv -aCU -aCU -aNo -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aCU -aQW -aRa -aRa -aDF -aRa -aRa -aRa -aRa -aRa -aRa -aCU +aGI +aGI +aJf +aJu +aGI +aGI +aKU +aCq +aCq +aLN +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aCq +aPt +aPx +aPx +aDb +aPx +aPx +aPx +aPx +aPx +aPx +aCq aaM aaM aaM aaM aaM aaM +aSp +aSz +aSp +aTe +aTe +aTe +aTD +aTM +aTQ aTV -aUf -aTV -aUK -aUK -aUK -aVj -aVs -aVw -aVB -aVJ -aVN -aVJ -aVV -aVZ -aVV -aWh -aWj -aTV -aUf -aTV +aUd +aUh +aUd +aUp +aUt +aUp +aUB +aUD +aSp +aSz +aSp aaM aaM "} @@ -59516,135 +53370,135 @@ aaM aaM aaM aaM -aqx -aqF -aqV -are -ark -arw -arB -ari -ari +apV +aqd +aqt +aqC +aqI +aqU +aqZ +aqG +aqG +arY +asl asA -asO -atd -ari -arw -arw +aqG +aqU +aqU +atj +ats +atE atM -atV -aui -auq -arw -are -auI -auR -auJ -auJ -avl +aqU +aqC +aue +aun +auf +auf +auH +auA +aqt ave -aqV -avI -avZ -avW -avW -axo -avI -avI -avI -ayD -ayD -avI -aAz -aAL -aBb -aBu -aBB -avW -aCo -aCB -aCJ -aCZ -aCZ -aDy -aCI -aCG -aCG -aEB -aEK -aEY -aFg -aFg -aFw -aFg -aFg -aEB +avv +avs +avs +awK +ave +ave +ave +axZ +axZ +ave +azV +aAh +aAx +aAQ +aAX +avs +aBK +aBX +aCf +aCv +aCv aCU -aGL -aGL -aGL -aGL -aGL -aIT -aJr -aJQ -aJQ -aJw -aKT -aLu -aLu -aMw -aCU -aCU -aNo -aNq -aNq -aNu -aNu -aNu -aNu -aNq -aNq -aNq -aCU -aQX -aRa -aRa -aRY -aRJ -aRJ -aRJ -aRJ -aRJ +aCe +aCc +aCc +aDM +aDU +aEf +aEk +aEk +aEy +aEk +aEk +aDM +aCq +aFH +aFH +aFH +aFH +aFH +aHx +aHT +aIr +aIr +aHY +aJs +aJT +aJT +aKV +aCq +aCq +aLN +aLP +aLP +aLT +aLT +aLT +aLT +aLP +aLP +aLP +aCq +aPu +aPx +aPx +aQt +aQg +aQg +aQg +aQg +aQg +aRX +aCq +aaM +aaM +aaM +aaM +aaM +aaM +aSp +aSz +aSZ +aTe +aTe +aTe aTD -aCU -aaM -aaM -aaM -aaM -aaM -aaM -aTV -aUf -aUF -aUK -aUK -aUK -aVj -aVs -aVw -aVB -aVJ -aVJ -aVR -aVV -aVV -aVV -aWh -aWj -aTV -aUf +aTM +aTQ aTV +aUd +aUd +aUl +aUp +aUp +aUp +aUB +aUD +aSp +aSz +aSp aaM aaM "} @@ -59773,136 +53627,136 @@ aaM aaM aaM aaM -aqx -aqF +apV +aqd +aqt +aqC +aqJ aqV -are -arl -arx -arC -arQ -ari -asB -asP -asP -atl -arw -arw -atM -atW -aui -aur -arw -auC -auJ -auJ -auJ -auJ -avl +ara +aro +aqG +arZ +asm +asm +asI +aqU +aqU +atj +att +atE +atN +aqU +atY +auf +auf +auf +auf +auH +auA +aqt ave -aqV -avI -awa -avW -avW -axp -avI -ayB -awl -avW -azK -azK -avW -axw -axw -axw -axw -avW -avI -avI -aCI -aDa -aCZ -aDA -aCI -aCG -aEm -aEB +avw +avs +avs +awL +ave +axX +avH +avs +azg +azg +avs +awS +awS +awS +awS +avs +ave +ave +aCe +aCw +aCv +aCW +aCe +aCc +aDB +aDM +aDT +aEf +aEk +aEk aEJ -aEY -aFg -aFg -aFJ -aFg -aFg -aEB -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aJs -aJs -aJs -aCU -aCU -aCU -aCU -aCU -aCU -aNp -aNq -aNq -aOr -aOr -aOr -aOr -aNq -aNq -aQq -aCU -aQY -aRa -aRJ -aRZ -aRa -aRa -aRa -aRa -aRa -aRa -aCU +aEk +aEk +aDM +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aHU +aHU +aHU +aCq +aCq +aCq +aCq +aCq +aCq +aLO +aLP +aLP +aMO +aMO +aMO +aMO +aLP +aLP +aON +aCq +aPv +aPx +aQg +aQu +aPx +aPx +aPx +aPx +aPx +aPx +aCq aaM aaM aaM aaM aaM aaM +aSp +aSz +aSp +aTe +aTe +aTe +aTe +aTM +aTQ aTV -aUf -aTV -aUK -aUK -aUK -aUK -aVs -aVw -aVB -aVJ -aVN -aVJ -aVV -aVZ -aVV -aWh -aWj -aTV -aUf -aTV -aTV +aUd +aUh +aUd +aUp +aUt +aUp +aUB +aUD +aSp +aSz +aSp +aSp aaM "} (124,1,1) = {" @@ -60030,136 +53884,136 @@ aaM aaM aaM aaM -aqx -aqF -aqV -are -arm -arw -arD -ari -ari -asA -asQ -asQ -ari -arw -arw -atM -atX -aui -aus -arw -are -auK -auJ -auJ -avg -avl +apV +aqd +aqt +aqC +aqK +aqU +arb +aqG +aqG +arY +asn +asn +aqG +aqU +aqU +atj +atu +atE +atO +aqU +aqC +aug +auf +auf +auC +auH +auA +aqt +ave +avw +avs +avs +awM ave -aqV -avI -awa -avW -avW -axq -avI -ayC -axw -axw -axw -axw -axw -axw -axw -axw -axw -axw axY -avI -aCI -aDb -aDo -aDB -aCI -aCG -aCG -aEB -aEK -aEY -aFg -aFu -aFw -aGb -aFg -aEB -aFP -aGM -aGM -aFP -aGM -aGM -aFP -aCU -aJR -aJO -aJx -aCU +awS +awS +awS +awS +awS +awS +awS +awS +awS +awS +axu +ave +aCe +aCx +aCK +aCX +aCe +aCc +aCc +aDM +aDU +aEf +aEk +aEw +aEy +aFa +aEk +aDM +aEP +aFI +aFI +aEP +aFI +aFI +aEP +aCq +aIs +aIp +aHZ +aCq aaM aaM aaM aaM -aCU -aNq -aNq -aOc -aOs -aDf -aDf -aCS -aPJ -aNu -aNq -aCU -aQZ -aRa -aRa -aSa -aOO -aOO -aOO -aOO -aOO -aTE -aCU +aCq +aLP +aLP +aMB +aMP +aCB +aCB +aCo +aOg +aLT +aLP +aCq +aPw +aPx +aPx +aQv +aNl +aNl +aNl +aNl +aNl +aRY +aCq aaM aaM aaM aaM aaM aaM +aSp +aSz +aSp +aTf +aTf +aTu +aTe +aTM +aTQ aTV -aUf -aTV -aUL -aUL -aVa -aUK -aVs -aVw -aVB -aVJ -aVJ -aVJ -aVV -aVV -aVV -aWh -aWj -aTV -aUf -aUf -aTV +aUd +aUd +aUd +aUp +aUp +aUp +aUB +aUD +aSp +aSz +aSz +aSp aaM "} (125,1,1) = {" @@ -60287,137 +54141,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -are -arn -arv -arw -arR -ari -ari -ari -ari -ari -ats -arw -arw -arw -arw -arw -arw -are -auL -auS -avc -avh -ari -avi -aqV -avI -awb -avW -avW -axr -avI -ayC -axw -axw -axw -axw -axw -axw -axw -axw -axw -axw -aCm -avI -aCI -aDc -aDc -aDc -aCI -aCG -aCG -aEB -aEK -aEY -aFh -aFv -aFw -aGc -aFh -aEB -aFP -aGN -aHb -aFP -aHK -aIp -aFP -aCU -aJS -aHS -aKG -aCU -aCU -aCU -aCU -aCU -aCU -aNq -aNu -aOd -aOt -aOO -aOO -aHV -aPJ -aNu -aNq -aCU -aRa -aRa -aOO -aSb -aRa -aRa -aRa -aRa -aRa -aRa -aCU +apV +aqd +aqt +aqC +aqL +aqT +aqU +arp +aqG +aqG +aqG +aqG +aqG +asP +aqU +aqU +aqU +aqU +aqU +aqU +aqC +auh +auo +auy +auD +aqG +auE +aqt +ave +avx +avs +avs +awN +ave +axY +awS +awS +awS +awS +awS +awS +awS +awS +awS +awS +aBI +ave +aCe +aCy +aCy +aCy +aCe +aCc +aCc +aDM +aDU +aEf +aEl +aEx +aEy +aFb +aEl +aDM +aEP +aFJ +aFV +aEP +aGA +aHa +aEP +aCq +aIt +aGI +aJf +aCq +aCq +aCq +aCq +aCq +aCq +aLP +aLT +aMC +aMQ +aNl +aNl +aGL +aOg +aLT +aLP +aCq +aPx +aPx +aNl +aQw +aPx +aPx +aPx +aPx +aPx +aPx +aCq aaM aaM aaM aaM aaM aaM -aTV -aUf -aTV -aTV -aTV -aTV -aVk -aTV -aTV -aTV -aVK -aVK -aVK -aVK -aVK -aVK -aTV -aTV -aTV -aTV -aWx -aTV -aTV +aSp +aSz +aSp +aSp +aSp +aSp +aTE +aSp +aSp +aSp +aUe +aUe +aUe +aUe +aUe +aUe +aSp +aSp +aSp +aSp +aUR +aSp +aSp "} (126,1,1) = {" aaM @@ -60544,137 +54398,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -arf -ari -ary -arw -arS -are -asC -asC -asC -asC -arw -are -are -are -are -are -auz -ari -ari -ari -ari -ari -avi -aqV -aqV -avI -awb +apV +aqd +aqt +aqD +aqG +aqW +aqU +arq +aqC +asa +asa +asa +asa +aqU +aqC +aqC +aqC +aqC +aqC +atV +aqG +aqG +aqG +aqG +aqG +auE +aqt +aqt +ave +avx +avs +avZ +awN +ave +axX +awS avW -awD -axr -avI -ayB -axw -awA -azL -awA -aAA -aAM -aBc -axw -axw -aBO -aCl -avI -aCK -aDd -aDd -aDd -aDR -aCG -aEm -aEB -aEK -aEY -aFh -aFu -aFw -aGb -aFh -aEB -aGz -aGO -aHc -aFP -aHL +azh +avW +azW +aAi +aAy +awS +awS +aBk +aBH +ave +aCg +aCz +aCz +aCz +aDl +aCc +aDB +aDM +aDU +aEf +aEl +aEw +aEy +aFa +aEl +aDM +aFv +aFK +aFW +aEP +aGB +aHb +aHy +aCq +aIt aIq -aIU -aCU -aJS -aJP -aKG -aCU -aLv -aHa -aMx -aMS -aCU -aNq -aNu -aOd -aOt -aOO -aOO -aHV -aPJ -aNu -aNq -aCU -aDF -aRn -aDF -aCU -aDF -aDF -aDF -aDF -aDF -aDF -aCU +aJf +aCq +aJU +aFU +aKW +aLr +aCq +aLP +aLT +aMC +aMQ +aNl +aNl +aGL +aOg +aLT +aLP +aCq +aDb +aPK +aDb +aCq +aDb +aDb +aDb +aDb +aDb +aDb +aCq aaM aaM aaM aaM aaM aaM -aTV -aUf -aUf -aTV -aUN -aUR -aUR -aUR -aVx -aVC -aVD -aVD -aVD -aVD -aVD -aVD -aVC -aVx -aWo -aWo -aWo -aWz -aTV +aSp +aSz +aSz +aSp +aTh +aTl +aTl +aTl +aTR +aTW +aTX +aTX +aTX +aTX +aTX +aTX +aTW +aTR +aUI +aUI +aUI +aUT +aSp "} (127,1,1) = {" aaM @@ -60801,137 +54655,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -arf -ari -arw -arT -asi -arw -arw -arT -arw -arw -arw -arw -atU -arw -arw -arw -auD -auM -auT -ava +apV +aqd +aqt +aqt +aqD +aqG +aqU +arr +arG +aqU +aqU +arr +aqU +aqU +aqU +aqU +atr +aqU +aqU +aqU +atZ +aui +aup +auw +auA +aqt +aqt +aqt +avf +avf +avf +avf +avf +avf +axZ +axZ +ayN ave -aqV -aqV -aqV -avJ -avJ -avJ -avJ -avJ -avJ -ayD -ayD -azr -avI -aAi -avI -ayD -aBd -azr -azr -aBd -ayD -avI -avI -avI -aCG -aCG -aCG -aCG -aCG -aEB -aEJ -aEY -aFi -aFw -aFw -aGb -aFh -aEB -aFP -aGP -aGP -aFP -aGP -aGP -aFP -aJs -aJS -aHS -aKG -aCU -aCU -aLV -aCU -aCU -aCU -aNq -aNu -aOd -aCS -aDr -aDr -aHW -aPK -aNq -aNq -aCU -aNq -aNq -aNq -aNq -aNu -aNu -aNu -aNu -aNu -aNq -aCU +azE +ave +axZ +aAz +ayN +ayN +aAz +axZ +ave +ave +ave +aCc +aCc +aCc +aCc +aCc +aDM +aDT +aEf +aEm +aEy +aEy +aFa +aEl +aDM +aEP +aFL +aFL +aEP +aFL +aFL +aEP +aHU +aIt +aGI +aJf +aCq +aCq +aKu +aCq +aCq +aCq +aLP +aLT +aMC +aCo +aCN +aCN +aGM +aOh +aLP +aLP +aCq +aLP +aLP +aLP +aLP +aLT +aLT +aLT +aLT +aLT +aLP +aCq aaM aaM aaM aaM aaM aaM -aTV -aUf -aUf -aTV -aUO -aVb -aUR -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWo -aWo -aWz -aTV +aSp +aSz +aSz +aSp +aTi +aTv +aTl +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUI +aUI +aUT +aSp "} (128,1,1) = {" aaM @@ -60985,19 +54839,19 @@ aaM aaM aaM aaM -ajT -ajU -ajU -ajU -ajU -ajU -ajU -ajU -ajU -ajU -ajU -ajU -ajT +ajH +ajI +ajI +ajI +ajI +ajI +ajI +ajI +ajI +ajI +ajI +ajI +ajH aaM aaM aaM @@ -61058,137 +54912,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -arf -are -ari -ari -ari -are -ari -atk -arw -atA -arw -arw -arw -aut -arw -are -auN -auU -ava -ave -aqV -aqV -aqV +apV +aqd +aqt +aqt +aqt +aqD +aqC +aqG +aqG +aqG +aqC +aqG +asH +aqU +asX +aqU +aqU +aqU +atP +aqU +aqC +auj +auq +auw +auA +aqt +aqt +aqt +avf +avy avJ -awc -awn -awE -axs -avJ -ayE -axw -axw -ayD +awa +awO +avf +aya +awS +awS +axZ +azF +axZ aAj -ayD -aAN -aAO -axw -axw -aBP -aCp -aCC -aCL -avI -ayD -ayD -ayD -ayD -ayD -aEB -aEK -aEY -aFh -aFu +aAk +awS +awS +aBl +aBL +aBY +aCh +ave +axZ +axZ +axZ +axZ +axZ +aDM +aDU +aEf +aEl +aEw +aEy +aFa +aEl +aDM aFw -aGb -aFh -aEB -aGA -aFP -aFP -aHv -aFP -aFP -aFP -aJt -aJS -aHS -aKH -aCU -aLw -aHa -aHa -aMT -aCU -aNp -aNq -aNq -aOu -aOu -aOu -aOu -aNq -aNq -aQq -aCU -aNp -aNq -aNq -aNq -aNu -aNu -aNu -aNu -aNu -aQq -aCU +aEP +aEP +aGo +aEP +aEP +aEP +aHV +aIt +aGI +aJg +aCq +aJV +aFU +aFU +aLs +aCq +aLO +aLP +aLP +aMR +aMR +aMR +aMR +aLP +aLP +aON +aCq +aLO +aLP +aLP +aLP +aLT +aLT +aLT +aLT +aLT +aON +aCq aaM -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aUf -aTV -aUP -aVb -aVl -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWt -aWo -aWz -aTV +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSz +aSp +aTj +aTv +aTF +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUN +aUI +aUT +aSp "} (129,1,1) = {" aaM @@ -61242,19 +55096,19 @@ aaM aaM aaM aaM -ajT -aWS -akv -akv -akv -akv -akv -akv -akv -akv -aXf -alw -ajT +ajH +aVj +ake +ake +ake +ake +ake +ake +ake +ake +aVr +ala +ajH aaM aaM aaM @@ -61315,137 +55169,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -arf -ari -are -ari -are -are -are -ari -are -ari -ari -ari -ari -avi -aqV -aqV -aqV -avJ -awd -awd -awF -axt -avJ -ayF -axw -axw -ayD -aAj -ayD -aAO -axw -axw -axw -axw -axw -axw -axw -azr -axw -axw -axw -axw -axw -aEB -aEK -aEY -aFh -aFv -aFw -aGc -aFh -aEB -aFP -aGM -aGM -aFP -aGM -aGM -aFP -aJs -aJT -aJQ -aJw -aCU -aLw -aHa -aMy -aMU -aCU -aNq -aNq -aNq -aNu -aNu -aNu -aNu -aNq -aNq -aQr -aCU -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aCU +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqD +aqG +aqC +aqG +aqC +aqC +aqC +aqG +aqC +aqG +aqG +aqG +aqG +auE +aqt +aqt +aqt +avf +avz +avz +awb +awP +avf +ayb +awS +awS +axZ +azF +axZ +aAk +awS +awS +awS +awS +awS +awS +awS +ayN +awS +awS +awS +awS +awS +aDM +aDU +aEf +aEl +aEx +aEy +aFb +aEl +aDM +aEP +aFI +aFI +aEP +aFI +aFI +aEP +aHU +aIu +aIr +aHY +aCq +aJV +aFU +aKX +aLt +aCq +aLP +aLP +aLP +aLT +aLT +aLT +aLT +aLP +aLP +aOO +aCq +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aLP +aCq aaM -aTV -aUc -aUd -aTW -aUr -aUw -aTV -aUf -aTV -aUO -aVb -aVm -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWo -aWy -aWA -aTV +aSp +aSw +aSx +aSq +aSL +aSQ +aSp +aSz +aSp +aTi +aTv +aTG +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUI +aUS +aUU +aSp "} (130,1,1) = {" aaM @@ -61472,13 +55326,13 @@ aaM aaM aaM aaM -ahc -ahc -ahc -ahc -ahc -ahc -ahc +agZ +agZ +agZ +agZ +agZ +agZ +agZ aaM aaM aaM @@ -61499,19 +55353,19 @@ aaM aaM aaM aaM -ajU +ajI +ajQ +akf +akl +akq +akq +akq +akr +akr +akT ake -akw -akC -akH -akH -akH -akI -akI -all -akv -aXh -ajT +aVr +ajH aaM aaM aaM @@ -61572,137 +55426,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -avJ -awe -awo -awG -axu -avJ -ayG -axw -axw -azM -aAj -azM -axw -axw -axw -axw -axw -axw -axw -axw -azr -axw -axw -axw -axw -axw -aEB -aEK -aEY -aFg -aFx -aFx -aFx -aFg -aEB -aFP -aGQ -aHd -aFP -aHM -aIr -aFP -aCU -aCU -aCU -aCU -aCU -aCU -aLW -aCU -aCU -aCU -aNr -aNq -aOe -aNq -aNq -aNq -aNq -aNq -aNq -aQr -aCU -aNq -aNq -aOe -aNq -aNq -aNq -aNq -aNq -aNq -aNr -aCU +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +avf +avA +avK +awc +awQ +avf +ayc +awS +awS +azi +azF +azi +awS +awS +awS +awS +awS +awS +awS +awS +ayN +awS +awS +awS +awS +awS +aDM +aDU +aEf +aEk +aEz +aEz +aEz +aEk +aDM +aEP +aFM +aFX +aEP +aGC +aHc +aEP +aCq +aCq +aCq +aCq +aCq +aCq +aKv +aCq +aCq +aCq +aLQ +aLP +aMD +aLP +aLP +aLP +aLP +aLP +aLP +aOO +aCq +aLP +aLP +aMD +aLP +aLP +aLP +aLP +aLP +aLP +aLQ +aCq aaM -aTV -aUd -aUj -aUd -aUd -aUx -aUD -aUf -aTV -aUQ -aVb -aVl -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWt -aWy -aWB -aTV +aSp +aSx +aSD +aSx +aSx +aSR +aSX +aSz +aSp +aTk +aTv +aTF +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUN +aUS +aUV +aSp "} (131,1,1) = {" aaM @@ -61729,13 +55583,13 @@ aaM aaM aaM aaM +agZ ahc -ahf -ahl -ahc -ahs -ahl -ahc +ahi +agZ +aho +ahi +agZ aaM aaM aaM @@ -61756,19 +55610,19 @@ aaM aaM aaM aaM -ajU +ajI +ajR akf -akw -akC -akI -akI -akI -akI -akI -akI -alu -alx -ajT +akl +akr +akr +akr +akr +akr +akr +akZ +alb +ajH aaM aaM aaM @@ -61829,137 +55683,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -avJ -awd -awd -awd -awd -avJ -axw -axw -azs -ayD -aAj -ayD -aAP -axw -aBv -aBv -aBv -aBv -aBv +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +avf +avz +avz +avz +avz +avf +awS +awS +ayO +axZ +azF +axZ +aAl +awS +aAR +aAR +aAR +aAR +aAR +aCi +ave +awS +awS +awS +awS +awS +aDM +aDT +aEf +aEn +aEA +aEA +aEA +aFh +aDM +aEP +aFN +aFY +aEP +aGD +aHd +aEP +aDb +aCC +aIM aCM -avI -axw -axw -axw -axw -axw -aEB -aEJ -aEY -aFj -aFy -aFy -aFy -aGl -aEB -aFP -aGR -aHe -aFP -aHN -aIs -aFP -aDF -aDg -aKm -aDq -aEQ -aEQ -aDq -aMz -aMV -aCU -aCU -aNP -aDF -aDF -aDF -aDF -aDF -aDF -aNP -aCU -aCU -aCU -aNP -aDF -aDF -aDF -aDF -aDF -aDF -aNP -aCU -aCU -aCU -aTV -aTW -aUk -aTW -aUd -aUx -aTV -aUf -aTV -aUR -aVb -aUR -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWo -aWy -aWC -aTV +aEa +aEa +aCM +aKY +aLu +aCq +aCq +aMo +aDb +aDb +aDb +aDb +aDb +aDb +aMo +aCq +aCq +aCq +aMo +aDb +aDb +aDb +aDb +aDb +aDb +aMo +aCq +aCq +aCq +aSp +aSq +aSE +aSq +aSx +aSR +aSp +aSz +aSp +aTl +aTv +aTl +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUI +aUS +aUW +aSp "} (132,1,1) = {" aaM @@ -61986,13 +55840,13 @@ aaM aaM aaM aaM -ahc +agZ +ahd ahg -ahj -ahc -ahn -ahg -ahc +agZ +ahk +ahd +agZ aaM aaM aaM @@ -62013,19 +55867,19 @@ aaM aaM aaM aaM -ajU -akg -akw -akC -akJ -akJ -akJ -akI -akI -alm -akv -aXi -ajT +ajI +ajS +akf +akl +aks +aks +aks +akr +akr +akU +ake +aVs +ajH aaM aaM aaM @@ -62086,137 +55940,137 @@ aaM aaM aaM aaM -aqx -aqF -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -aqV -avm -avr -avr -avJ -awd -awd -awd -awd -axX -axw -axw -azs -ayD -aAj -ayD -aAQ -axw -aBw -aBw -aBQ -aBw -aBw -aBw -avI -axw -axw -axw -axw -axw -aEB -aEK -aEK -aEI -aEI -aEI -aEI -aEI -aEB -aFP -aGP -aGP -aFP -aGP -aGP -aFP -aDF -aJU -aCS -aCS -aCS -aCS -aCS -aCS -aHh -aDq -aNs -aNQ -aHh -aDq -aDq -aDq -aDq -aDh -aNQ -aQs -aDq -aDh -aNQ -aHh -aDq -aDq -aDq -aDq -aDh -aNQ -aQs -aDq -aTO -aTW -aUe -aUe -aUe -aUe -aUe -aTV -aTV -aTV -aUR -aUR -aUR -aUR -aVx -aVD -aVD -aVD -aVS -aVW -aWa -aVD -aVD -aWk -aWq -aWo -aWo -aWD -aTV +apV +aqd +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +aqt +auI +auN +auN +avf +avz +avz +avz +avz +axt +awS +awS +ayO +axZ +azF +axZ +aAm +awS +aAS +aAS +aBm +aAS +aAS +aAS +ave +awS +awS +awS +awS +awS +aDM +aDU +aDU +aDS +aDS +aDS +aDS +aDS +aDM +aEP +aFL +aFL +aEP +aFL +aFL +aEP +aDb +aIv +aCo +aCo +aCo +aCo +aCo +aCo +aGb +aCM +aLR +aMp +aGb +aCM +aCM +aCM +aCM +aCD +aMp +aOP +aCM +aCD +aMp +aGb +aCM +aCM +aCM +aCM +aCD +aMp +aOP +aCM +aSi +aSq +aSy +aSy +aSy +aSy +aSy +aSp +aSp +aSp +aTl +aTl +aTl +aTl +aTR +aTX +aTX +aTX +aUm +aUq +aUu +aTX +aTX +aUE +aUK +aUI +aUI +aUX +aSp "} (133,1,1) = {" aaM @@ -62243,13 +56097,13 @@ aaM aaM aaM aaM -ahc -ahc -ahc -ahc -ahc -ahy -ahc +agZ +agZ +agZ +agZ +agZ +ahq +agZ aaM aaM aaM @@ -62270,19 +56124,19 @@ aaM aaM aaM aaM -ajU -aWT -akv -akv -akv -akv -akv -alb -alb -akv -aXg -alw -ajT +ajI +aVk +ake +ake +ake +ake +ake +akJ +akJ +ake +aVs +ala +ajH aaM aaM aaM @@ -62343,137 +56197,137 @@ aaM aaM aaM aaM -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -aqw -avs -avs -aqw -aqw -aqw -aqw -avJ -avJ -axw -axw -avI -avI -aAk -avI -avI -azr -ayD -ayD -avI -avI -avI -avI -avI -axw -axw -axw -axw -axw -aEB -aEL -aEK -aEK -aEK -aEK -aEK -aEK -aEB -aGB -aFP -aFP -aFP -aFP -aFP -aFP -aJu -aJU -aCS -aCS -aCS -aCS -aFl -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aFl -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aHV +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +apU +auO +auO +apU +apU +apU +apU +avf +avf +awS +awS +ave +ave +azG +ave +ave +ayN +axZ +axZ +ave +ave +ave +ave +ave +awS +awS +awS +awS +awS +aDM +aDV +aDU +aDU +aDU +aDU +aDU +aDU +aDM +aFx +aEP +aEP +aEP +aEP +aEP +aEP +aHW +aIv +aCo +aCo +aCo +aCo +aEp +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aEp +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aGL +aSr +aSz +aSz +aSz +aSz +aSz +aSz +aSz +aTg +aTl +aTl +aTl +aTl +aTR aTX -aUf -aUf -aUf -aUf -aUf -aUf -aUf -aUM -aUR -aUR -aUR -aUR -aVx -aVD -aVD -aVD -aVT -aVX -aWb -aWf -aWf -aWl -aWr -aWu -aWo -aWo -aTV +aTX +aTX +aUn +aUr +aUv +aUz +aUz +aUF +aUL +aUO +aUI +aUI +aSp "} (134,1,1) = {" aaM @@ -62500,13 +56354,13 @@ aaM aaM aaM aaM +agZ ahc -ahf -ahl -ahc -ahf -ahl +ahi +agZ ahc +ahi +agZ aaM aaM aaM @@ -62527,19 +56381,19 @@ aaM aaM aaM aaM -ajV -ajV -ajV -ajV -ajV -akN -akY -alc -alc -akY -akN -akN -ajV +ajJ +ajJ +ajJ +ajJ +ajJ +akw +akH +akK +akK +akH +akw +akw +ajJ aaM aaM aaM @@ -62616,7 +56470,7 @@ aaM aaM aaM aaM -aqy +apW aaM aaM aaM @@ -62624,113 +56478,113 @@ aaM aaM aaM aaM -aqy -avn -avn -avn -avn -awf -avn -aqw -axv -axv -axw -axw -avI -azN -aAj -aAB -avI -axw -axw -aBC -avI -aCq -avI -avI -avI -avI -avI -azP -aAi -avI -aEB -aEM +apW +auJ +auJ +auJ +auJ +avB +auJ +apU +awR +awR +awS +awS +ave +azj +azF +azX +ave +awS +awS +aAY +ave +aBM +ave +ave +ave +ave +ave +azl +azE +ave +aDM +aDW +aDU +aDU +aDU aEK -aEK -aEK -aFK -aEK -aEK -aEB -aFP -aFP -aFP -aHw -aHw -aHw -aHw -aDF -aJU -aCS -aCS -aCS -aCS -aCS -aCS -aMW -aDr -aNt -aNR -aMW -aDr -aDr -aDr -aDr -aPL -aNR -aQt -aDr -aPL -aNR -aMW -aDr -aDr -aDr -aDr -aPL -aNR -aQt -aDr -aHW -aTW -aUg -aUg -aUg -aUg -aUg -aTV -aTV -aTV -aUR -aUR -aUR -aUR -aVx -aVD -aVD -aVD -aVS -aVW -aWc -aVD -aVD -aWk -aWo -aWv -aWo -aWE -aTV +aDU +aDU +aDM +aEP +aEP +aEP +aGp +aGp +aGp +aGp +aDb +aIv +aCo +aCo +aCo +aCo +aCo +aCo +aLv +aCN +aLS +aMq +aLv +aCN +aCN +aCN +aCN +aOi +aMq +aOQ +aCN +aOi +aMq +aLv +aCN +aCN +aCN +aCN +aOi +aMq +aOQ +aCN +aGM +aSq +aSA +aSA +aSA +aSA +aSA +aSp +aSp +aSp +aTl +aTl +aTl +aTl +aTR +aTX +aTX +aTX +aUm +aUq +aUw +aTX +aTX +aUE +aUI +aUP +aUI +aUY +aSp "} (135,1,1) = {" aaM @@ -62757,13 +56611,13 @@ aaM aaM aaM aaM -ahc -ahh -ahm -ahc -ahn -ahg -ahc +agZ +ahe +ahj +agZ +ahk +ahd +agZ aaM aaM aaM @@ -62786,17 +56640,17 @@ aaM aaM aaM aaM -ajV -akD -ajV -akO -akO -ald -ald -akO -akO -akO -ajV +ajJ +akm +ajJ +akx +akx +akL +akL +akx +akx +akx +ajJ aaM aaM aaM @@ -62873,7 +56727,7 @@ aaM aaM aaM aaM -aqy +apW aaM aaM aaM @@ -62881,113 +56735,113 @@ aaM aaM aaM aaM -aqy -avn -avn -avn -avn -avn -avn -awH -axw -axw -axw -axw -avI -azO -aAj -aAC -avI -aBe -axw -aBD -avI +apW +auJ +auJ +auJ +auJ +auJ +auJ +awd +awS +awS +awS +awS +ave +azk +azF +azY +ave +aAA +awS +aAZ +ave +aBM +ave +aCj +aCj +aCj +aCY +aCj +aCj +aCj +aDM +aDX +aEg +aDX +aDM +aDM +aDM +aDM +aDM +aEP +aEP +aFZ +aGq +aGE +aGF +aGF +aDb +aCF +aIN +aCN +aJv +aJW +aEq +aEq +aLw aCq -avI -aCN -aCN -aCN -aDC -aCN -aCN -aCN -aEB -aEN -aEZ -aEN -aEB -aEB -aEB -aEB -aEB -aFP -aFP -aHf -aHx -aHO -aHP -aHP -aDF -aDj -aKn -aDr -aKW -aLx -aFm -aFm -aMX -aCU -aCU -aNP -aDF -aDF -aDF -aDF -aDF -aDF -aNP -aCU -aCU -aCU -aNP -aDF -aDF -aDF -aDF -aDF -aDF -aNP -aCU -aCU -aCU -aTV -aTW -aUk -aTW -aUd -aUy -aTV -aUf -aTV -aUR -aVb -aUR -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWo -aWy -aWF -aTV +aCq +aMo +aDb +aDb +aDb +aDb +aDb +aDb +aMo +aCq +aCq +aCq +aMo +aDb +aDb +aDb +aDb +aDb +aDb +aMo +aCq +aCq +aCq +aSp +aSq +aSE +aSq +aSx +aSS +aSp +aSz +aSp +aTl +aTv +aTl +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUI +aUS +aUZ +aSp "} (136,1,1) = {" aaM @@ -63014,13 +56868,13 @@ aaM aaM aaM aaM -ahc -ahc -ahc -ahc -ahc -ahc -ahc +agZ +agZ +agZ +agZ +agZ +agZ +agZ aaM aaM aaM @@ -63043,17 +56897,17 @@ aaM aaM aaM aaM -ajV -akE -ajV -akP -akS -akS -akS -akS -akS -akS -ajV +ajJ +akn +ajJ +aky +akB +akB +akB +akB +akB +akB +ajJ aaM aaM aaM @@ -63130,7 +56984,7 @@ aaM aaM aaM aaM -aqy +apW aaM aaM aaM @@ -63138,113 +56992,113 @@ aaM aaM aaM aaM -aqy -avn -avt -avn -avn -avn -avn -aqw -axx -axw -axw -ayX -avI -azN -aAj -aAB -avI -azH -axw -aBE -avI +apW +auJ +auP +auJ +auJ +auJ +auJ +apU +awT +awS +awS +ayt +ave +azj +azF +azX +ave +azd +awS +aBa +ave +aBM +ave +aCk +aCA +aCL +aCj +aDm +aDm +aDm +aDM +aDY +aDY +aDY +aDM +aEL +aFc +aFi +aFo +aEP +aEP +aFZ +aGq +aGF +aGF +aGF +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aLP +aLP +aME +aLP +aLP +aLP +aLP +aLP +aLP +aLQ +aCq +aLQ +aLP +aME +aLP +aLP +aLP +aLP +aLP +aLP +aLP aCq -avI -aCO -aDe -aDp -aCN -aDS -aDS -aDS -aEB -aEO -aEO -aEO -aEB -aFL -aGd -aGm -aGs -aFP -aFP -aHf -aHx -aHP -aHP -aHP -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aNq -aNq -aOf -aNq -aNq -aNq -aNq -aNq -aNq -aNr -aCU -aNr -aNq -aOf -aNq -aNq -aNq -aNq -aNq -aNq -aNq -aCU aaM -aTV -aUd -aUl -aUd -aUd -aUy -aUD -aUf -aTV -aUQ -aVb -aVl -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWt -aWy -aWG -aTV +aSp +aSx +aSF +aSx +aSx +aSS +aSX +aSz +aSp +aTk +aTv +aTF +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUN +aUS +aVa +aSp "} (137,1,1) = {" aaM @@ -63271,13 +57125,13 @@ aaM aaM aaM aaM -ahc +agZ +ahf ahi -ahl -ahc -aht -ahl -ahc +agZ +ahp +ahi +agZ aaM aaM aaM @@ -63300,17 +57154,17 @@ aaM aaM aaM aaM -ajV -ajV -ajV -akQ -akS -akS -akS -akS -akS -akS -ajV +ajJ +ajJ +ajJ +akz +akB +akB +akB +akB +akB +akB +ajJ aaM aaM aaM @@ -63378,130 +57232,130 @@ aaM aaM aaM aaM -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqw -aqw -avx -avx -avx -avx -avx -axw -axY -ayH -avI -avI -azP -aAl -aAD -avI -avI -aBx -aBF -avI +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +apU +apU +auT +auT +auT +auT +auT +awS +axu +ayd +ave +ave +azl +azH +azZ +ave +ave +aAT +aBb +ave +aBM +ave +aCl +aCA +aCL +aCj +aCj +aCj +aDC +aDM +aDY +aDY +aDY +aDM +aEM +aFd +aFj +aFp +aEP +aEP +aFZ +aGq +aGF +aGF +aHz aCq -avI -aCP -aDe -aDp -aCN -aCN -aCN -aEn -aEB -aEO -aEO -aEO -aEB -aFM -aGe -aGn -aGt -aFP -aFP -aHf -aHx -aHP -aHP -aIV -aCU aaM aaM -aCU +aCq aaM aaM aaM aaM aaM -aCU -aNu -aNu -aNq -aNu -aNu -aNu -aNu -aNq -aNu -aNu -aCU -aRb -aNu -aNq -aNu -aNu -aNu -aNu -aNq -aNu -aTF -aCU +aCq +aLT +aLT +aLP +aLT +aLT +aLT +aLT +aLP +aLT +aLT +aCq +aPy +aLT +aLP +aLT +aLT +aLT +aLT +aLP +aLT +aRZ +aCq aaM -aTV -aUc -aUd -aTW -aUs -aUz -aTV -aUf -aTV -aUR +aSp +aSw +aSx +aSq +aSM +aST +aSp +aSz +aSp +aTl +aTv +aTG +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUI +aUS aVb -aVm -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWo -aWy -aWH -aTV +aSp "} (138,1,1) = {" aaM @@ -63528,13 +57382,13 @@ aaM aaM aaM aaM -ahc -ahj +agZ ahg -ahc -ahg -ahz -ahc +ahd +agZ +ahd +ahr +agZ aaM aaM aaM @@ -63559,15 +57413,15 @@ aaM aaM aaM aaM -ajV -akR -akR -akR -akS -akR -akR -akR -ajV +ajJ +akA +akA +akA +akB +akA +akA +akA +ajJ aaM aaM aaM @@ -63635,130 +57489,130 @@ aaM aaM aaM aaM -aqy -aqG -aqW -aqW -aqW -aro -aqy -aqy -atN -atY -atN -aqy -aqy -aqG -aqW -aqW -aqW -aro -aqy -aqy -avy -avK -awg -awp -avx -avx -avx -avI -avI -azt -azt -azt -azt -azt -avI -avI -avI -avI -avI -avI -aCN -aCN -aCN -aCN -aDS -aDS -aDS -aEB -aEO -aEO -aEO -aEB -aFN -aGf -aGo -aGt -aFP -aFP -aHf -aHx -aHP -aHP -aIW -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aaM -aaM -aCU -aNv -aNv -aOg -aNv -aNv -aNv -aNv -aPM -aNv -aNv -aCU -aNv -aNv -aOg -aNv -aNv -aNv -aNv -aPM -aNv -aNv -aCU -aaM -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aUf -aTV -aUQ -aVb -aVl -aVb -aVx -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVD -aVx -aWp -aWt -aWy -aWI -aTV +apW +aqe +aqu +aqu +aqu +aqM +apW +apW +atk +atv +atk +apW +apW +aqe +aqu +aqu +aqu +aqM +apW +apW +auU +avg +avC +avL +auT +auT +auT +ave +ave +ayP +ayP +ayP +ayP +ayP +ave +ave +ave +ave +ave +ave +aCj +aCj +aCj +aCj +aDm +aDm +aDm +aDM +aDY +aDY +aDY +aDM +aEN +aFe +aFk +aFp +aEP +aEP +aFZ +aGq +aGF +aGF +aHA +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aaM +aaM +aCq +aLU +aLU +aMF +aLU +aLU +aLU +aLU +aOj +aLU +aLU +aCq +aLU +aLU +aMF +aLU +aLU +aLU +aLU +aOj +aLU +aLU +aCq +aaM +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSz +aSp +aTk +aTv +aTF +aTv +aTR +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTX +aTR +aUJ +aUN +aUS +aVc +aSp "} (139,1,1) = {" aaM @@ -63785,13 +57639,13 @@ aaM aaM aaM aaM -ahc -ahc -ahc -ahc -ahc -ahc -ahc +agZ +agZ +agZ +agZ +agZ +agZ +agZ aaM aaM aaM @@ -63816,15 +57670,15 @@ aaM aaM aaM aaM -ajV -akS -akS -akS -akS -akS -akS -akS -ajV +ajJ +akB +akB +akB +akB +akB +akB +akB +ajJ aaM aaM aaM @@ -63892,101 +57746,101 @@ aaM aaM aaM aaM -aqy -aqH -aqG -aqW -aro -arz -aqy -atB -atO -atZ -auj -auu -aqy -aqH -aqG -aqW -aro -arz -aqy -aqy -avz -avL -avL -awq -avx -axy -axZ -axZ -ayY -axZ -axZ -axZ -axZ -axZ -axZ -axZ -axZ -axZ -aCr -avx -aCQ -aCQ -aCQ -aDD -aCQ -aCQ -aCQ +apW +aqf +aqe +aqu +aqM +aqX +apW +asY +atl +atw +atF +atQ +apW +aqf +aqe +aqu +aqM +aqX +apW +apW +auV +avh +avh +avM +auT +awU +axv +axv +ayu +axv +axv +axv +axv +axv +axv +axv +axv +axv +aBN +auT +aCm +aCm +aCm +aCZ +aCm +aCm +aCm +aDM +aDY +aDY +aDY aEB aEO -aEO -aEO -aFz -aFO -aFP -aFP -aFP -aGC -aFP -aHf -aHx -aHP -aHP -aIX -aCU -aCU -aKo -aKI -aKX -aLy -aCU +aEP +aEP +aEP +aFy +aEP +aFZ +aGq +aGF +aGF +aHB +aCq +aCq +aIO +aJh +aJw +aJX +aCq aaM aaM -aCU -aNw -aDf -aDf -aDf -aOP -aPi -aDq -aDq -aDq -aQu -aCU -aOs -aDf -aDf -aDf -aSq -aSO -aDq -aDq -aDq -aEf -aCU +aCq +aLV +aCB +aCB +aCB +aNm +aNF +aCM +aCM +aCM +aOR +aCq +aMP +aCB +aCB +aCB +aQL +aRj +aCM +aCM +aCM +aDw +aCq aaM aaM aaM @@ -63994,28 +57848,28 @@ aaM aaM aaM aaM -aTV -aUf -aTV -aUR -aVc -aVn -aVt -aVy -aVE -aVE -aVE -aVE -aVE -aVE -aVE -aVE -aVy -aWs -aWw -aWy -aWJ -aTV +aSp +aSz +aSp +aTl +aTw +aTH +aTN +aTS +aTY +aTY +aTY +aTY +aTY +aTY +aTY +aTY +aTS +aUM +aUQ +aUS +aVd +aSp "} (140,1,1) = {" aaM @@ -64042,13 +57896,13 @@ aaM aaM aaM aaM +agZ ahc -ahf -ahl -ahc -ahf -ahl +ahi +agZ ahc +ahi +agZ aaM aaM aaM @@ -64073,15 +57927,15 @@ aaM aaM aaM aaM -ajV -akO -akO -akO -alj -akO -akO -akO -ajV +ajJ +akx +akx +akx +akR +akx +akx +akx +ajJ aaM aaM aaM @@ -64149,130 +58003,130 @@ aaM aaM aaM aaM -aqy -asj -aqW -aqW -aqW -atm -aqy -atC -ate -ask -asD -auv -aqy -asj -aqW -aqW -aqW -atm -aqy -aqy -avA -avL -avL -awr -awI -axz -avL -avL -aya -avL -avL -avL -avL -avL -avL -aya -avL -avL -aCs -aAJ -aCR -aDf -aDf -aDf -aDf -aDf -aEo -aEB -aEO -aEO -aEO -aFA -aFP -aFP -aFP -aFP -aFP -aFP -aHf -aHx -aHP -aHP -aIY -aCU -aCU -aKp -aHS -aKY -aLz -aCU +apW +arH +aqu +aqu +aqu +asJ +apW +asZ +asB +arI +asb +atR +apW +arH +aqu +aqu +aqu +asJ +apW +apW +auW +avh +avh +avN +awe +awV +avh +avh +axw +avh +avh +avh +avh +avh +avh +axw +avh +avh +aBO +aAf +aCn +aCB +aCB +aCB +aCB +aCB +aDD +aDM +aDY +aDY +aDY +aEC +aEP +aEP +aEP +aEP +aEP +aEP +aFZ +aGq +aGF +aGF +aHC +aCq +aCq +aIP +aGI +aJx +aJY +aCq aaM aaM -aCU -aNx -aCS -aCS -aCS -aOQ -aPj -aCS -aCS -aCS -aQv -aCU -aOt -aCS -aCS -aCS -aSr -aJU -aCS -aCS -aCS -aHV -aCU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aTV -aUf -aTV -aUS -aVd -aUR -aUR -aVx -aVC -aVD -aVD -aVD -aVD -aVD -aVD -aVC -aVx -aWo -aWo -aWo -aWK -aTV +aCq +aLW +aCo +aCo +aCo +aNn +aNG +aCo +aCo +aCo +aOS +aCq +aMQ +aCo +aCo +aCo +aQM +aIv +aCo +aCo +aCo +aGL +aCq +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aSp +aSz +aSp +aTm +aTx +aTl +aTl +aTR +aTW +aTX +aTX +aTX +aTX +aTX +aTX +aTW +aTR +aUI +aUI +aUI +aVe +aSp "} (141,1,1) = {" aaM @@ -64299,13 +58153,13 @@ aaM aaM aaM aaM -ahc +agZ +ahd +ahk +agZ ahg -ahn -ahc -ahj -ahA -ahc +ahs +agZ aaM aaM aaM @@ -64330,15 +58184,15 @@ aaM aaM aaM aaM -ajV -akT -akS -akT -akS -akT -akS -akT -ajV +ajJ +akC +akB +akC +akB +akC +akB +akC +ajJ aaM aaM aaM @@ -64406,130 +58260,130 @@ aaM aaM aaM aaM -aqy -aqH -aqI -aqW -arp -arz -aqy -atB -atP -arU -auk -auu -aqy -aqH -aqI -aqW -arp -arz -aqy -aqy -avB -avL -avL -aws -avx -axz -avL -ayI -ayZ -ayZ -azQ -avL -aAE -ayZ -aBf -ayZ -azQ -avL -aCs -aCD -aCS -aCS -aCS -aCS -aCS -aCS -aEp -aEB -aEB -aEB -aEB -aEB -aCU -aGg -aGg -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aKq -aHS -aKZ -aLA -aCU +apW +aqf +aqg +aqu +aqN +aqX +apW +asY +atm +ars +atG +atQ +apW +aqf +aqg +aqu +aqN +aqX +apW +apW +auX +avh +avh +avO +auT +awV +avh +aye +ayv +ayv +azm +avh +aAa +ayv +aAB +ayv +azm +avh +aBO +aBZ +aCo +aCo +aCo +aCo +aCo +aCo +aDE +aDM +aDM +aDM +aDM +aDM +aCq +aFf +aFf +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aIQ +aGI +aJy +aJZ +aCq aaM aaM -aCU -aNy -aCS -aCS -aCS -aOQ -aPj -aCS -aCS -aCS -aQw -aCU -aOs -aDf -aOt -aCS -aSr -aJU -aCS -aHV -aDq -aEf -aCU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aTV -aUf -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aVK -aVK -aVK -aVK -aVK -aVK -aTV -aTV -aTV -aTV -aWx -aTV -aTV +aCq +aLX +aCo +aCo +aCo +aNn +aNG +aCo +aCo +aCo +aOT +aCq +aMP +aCB +aMQ +aCo +aQM +aIv +aCo +aGL +aCM +aDw +aCq +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aSp +aSz +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aUe +aUe +aUe +aUe +aUe +aUe +aSp +aSp +aSp +aSp +aUR +aSp +aSp "} (142,1,1) = {" aaM @@ -64556,13 +58410,13 @@ aaM aaM aaM aaM -ahc -ahc -ahc -ahc -ahc -ahc -ahc +agZ +agZ +agZ +agZ +agZ +agZ +agZ aaM aaM aaM @@ -64587,15 +58441,15 @@ aaM aaM aaM aaM -ajV -akU -akV -akU -akV -akU -akV -akU -ajV +ajJ +akD +akE +akD +akE +akD +akE +akD +ajJ aaM aaM aaM @@ -64663,101 +58517,101 @@ aaM aaM aaM aaM -aqy -aqI -aqW -aqW -aqW -arp -aqy -atD -ate -ask -asD -auw -aqy -aqI -aqW -aqW -aqW -arp -aqy -aqy -avC -avM -awh -awt -avx -axz -aya -ayJ -aza -aza -aza -aAm -aza -aza -avx -avx -aBG -aya -aCs -aAq -aCT -aCT -aCT -aDE -aDT -aDT -aEq -aCU -aEP -aEP -aFk -aEP +apW +aqg +aqu +aqu +aqu +aqN +apW +ata +asB +arI +asb +atS +apW +aqg +aqu +aqu +aqu +aqN +apW +apW +auY +avi +avD +avP +auT +awV +axw +ayf +ayw +ayw +ayw +azI +ayw +ayw +auT +auT +aBc +axw +aBO +azM +aCp +aCp +aCp +aDa +aDn +aDn aDF -aCS -aCS -aDF -aEP -aFk -aEP -aCU -aHQ -aIt -aIZ -aJv -aCU -aKr -aHS -aLa -aLB -aCU +aCq +aDZ +aDZ +aEo +aDZ +aDb +aCo +aCo +aDb +aDZ +aEo +aDZ +aCq +aGG +aHe +aHD +aHX +aCq +aIR +aGI +aJz +aKa +aCq aaM aaM -aCU -aNy -aCS -aCS -aCS -aOQ -aPj -aCS -aCS -aCS -aQw -aCU -aRc -aCS -aOt -aCS -aSs -aJU -aCS -aHV -aCS -aTG -aCU +aCq +aLX +aCo +aCo +aCo +aNn +aNG +aCo +aCo +aCo +aOT +aCq +aPz +aCo +aMQ +aCo +aQN +aIv +aCo +aGL +aCo +aSa +aCq aaM aaM aaM @@ -64765,27 +58619,27 @@ aaM aaM aaM aaM -aTV +aSp +aSz +aSz +aSz +aSz +aSz +aTO +aTT +aTZ aUf aUf aUf -aUf -aUf -aVu -aVz -aVF -aVL -aVL -aVL -aVY -aVY -aVY -aWh -aWm -aTV -aUf -aUf -aTV +aUs +aUs +aUs +aUB +aUG +aSp +aSz +aSz +aSp aaM "} (143,1,1) = {" @@ -64844,15 +58698,15 @@ aaM aaM aaM aaM -ajV -akV -akV -akV -akV -akV -akV -akV -ajV +ajJ +akE +akE +akE +akE +akE +akE +akE +ajJ aaM aaM aaM @@ -64913,136 +58767,136 @@ aaM aaM aaM aaM -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -asR -aqy -aqy -aqy -atE -ask -ask -ask -atF -aqy -aqy -aqy -auV -aqy -aqy -aqy -aqy -avx -avx -avx -avx -avx -axA -avL -ayJ -aza -azu -avL -avL -aAF -aAR -avx -avx -aBH -avL -aCs -avx -aCU -aCU -aCU -aCU -aDU -aDU -aCU -aCU -aDF -aDF -aDF -aDF -aDF -aFR -aFR -aDF -aDF -aDF -aDF -aCU -aHQ -aIu -aHS -aHS -aCU -aKs -aHS -aLb -aLC -aCU -aaM -aaM -aCU -aNy -aCS -aCS -aCS -aOQ -aPj -aCS -aCS -aCS -aQw -aCU -aRd -aDT -aOt -aCS -aSr -aJU -aCS -aHV -aDr -aHW -aCU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aTV -aTV -aTV -aTV -aTV +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +aso +apW +apW +apW +atb +arI +arI +arI +atc +apW +apW +apW +aur +apW +apW +apW +apW +auT +auT +auT +auT +auT +awW +avh +ayf +ayw +ayQ +avh +avh +aAb +aAn +auT +auT +aBd +avh +aBO +auT +aCq +aCq +aCq +aCq +aDo +aDo +aCq +aCq +aDb +aDb +aDb +aDb +aDb +aER +aER +aDb +aDb +aDb +aDb +aCq +aGG +aHf +aGI +aGI +aCq +aIS +aGI +aJA +aKb +aCq +aaM +aaM +aCq +aLX +aCo +aCo +aCo +aNn +aNG +aCo +aCo +aCo +aOT +aCq +aPA +aDn +aMQ +aCo +aQM +aIv +aCo +aGL +aCN +aGM +aCq +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aSp +aSp +aSp +aSp +aSp +aSz +aTO +aTT +aTZ aUf -aVu -aVz -aVF -aVL -aVO -aVL -aVY -aWd -aVY -aWh -aWm -aTV +aUi aUf -aTV -aTV +aUs +aUx +aUs +aUB +aUG +aSp +aSz +aSp +aSp aaM "} (144,1,1) = {" @@ -65101,15 +58955,15 @@ aaM aaM aaM aaM -ajV -akV -akV -akV -akV -akV -akV -akV -ajV +ajJ +akE +akE +akE +akE +akE +akE +akE +ajJ aaM aaM aaM @@ -65170,108 +59024,108 @@ aaM aaM aaM aaM -aqy -aqG -aqW -arg -aqW -aro -aqy -arU -ask -asD -arW -ate -ask -att -ask -ask -ask -ask -ask -att -ask -asD -arW -ate -ask -ask -att -ask -ask -asD -awu -arW -atP -ask -ayJ -aza -avL -azR -avL -azR -avL -aBg -aza -aBG -avL -aCs -aAI -avx -aDg -aDq -aDF -aDq -aEf -aDF -aEC +apW +aqe +aqu +aqE +aqu +aqM +apW +ars +arI +asb +aru +asB +arI +asQ +arI +arI +arI +arI +arI +asQ +arI +asb +aru +asB +arI +arI +asQ +arI +arI +asb +avQ +aru +atm +arI +ayf +ayw +avh +azn +avh +azn +avh +aAC +ayw +aBc +avh +aBO +aAe +auT +aCC +aCM +aDb +aCM +aDw +aDb +aDN +aEa +aEa +aEa +aEa aEQ -aEQ -aEQ -aEQ -aFQ -aCS -aCS -aGu -aGD -aGS -aHg -aCU -aHQ -aIu -aHS -aHS -aCU -aCU -aKJ -aCU -aCU -aCU +aCo +aCo +aFq +aFz +aFO +aGa +aCq +aGG +aHf +aGI +aGI +aCq +aCq +aJi +aCq +aCq +aCq aaM aaM -aCU -aNx -aCS -aCS -aCS -aOQ -aPj -aCS -aCS -aCS -aQv -aCU -aOt -aCS -aCS -aCS -aSr -aJU -aCS -aCS -aCS -aHV -aCU +aCq +aLW +aCo +aCo +aCo +aNn +aNG +aCo +aCo +aCo +aOS +aCq +aMQ +aCo +aCo +aCo +aQM +aIv +aCo +aCo +aCo +aGL +aCq aaM aaM aaM @@ -65283,22 +59137,22 @@ aaM aaM aaM aaM -aTV +aSp +aSz +aTO +aTT +aTZ aUf -aVu -aVz -aVF -aVL -aVL -aVU -aVY -aVY -aVY -aWh -aWm -aTV aUf -aTV +aUo +aUs +aUs +aUs +aUB +aUG +aSp +aSz +aSp aaM aaM "} @@ -65358,15 +59212,15 @@ aaM aaM aaM aaM -ajV -ajV -ajV -ajV -ajV -ajV -ajV -ajV -ajV +ajJ +ajJ +ajJ +ajJ +ajJ +ajJ +ajJ +ajJ +ajJ aaM aaM aaM @@ -65427,112 +59281,112 @@ aaM aaM aaM aaM -aqy -aqH -aqG -aqW -aro -arz -aqy -arV -asl -asE -arW -atf -asl -asl -asl -asl -asl -asl -asl -asl -asl -asE -arW -atf -asl -asl -asl -asl -asl -asE -awv -awJ -atP -ask -ayJ -aza -azv -azS -aAn -aAG -aAS -aBh -aza -aBG -avL -aCs -aAI -aAJ -aDh -aCS +apW +aqf +aqe +aqu +aqM +aqX +apW +art +arJ +asc +aru +asC +arJ +arJ +arJ +arJ +arJ +arJ +arJ +arJ +arJ +asc +aru +asC +arJ +arJ +arJ +arJ +arJ +asc +avR +awf +atm +arI +ayf +ayw +ayR +azo +azJ +aAc +aAo +aAD +ayw +aBc +avh +aBO +aAe +aAf +aCD +aCo +aDc +aCo +aCo aDG -aCS -aCS -aEr -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aHh -aHy -aHR -aIv -aHS -aJa -aJV -aHS -aHS -aHS -aLD -aCU +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aGb +aGr +aGH +aHg +aGI +aHE +aIw +aGI +aGI +aGI +aKc +aCq aaM aaM -aCU -aNz -aDT -aDT -aDT -aOR -aPk -aDr -aDr -aDr -aQx -aCU -aRd -aDT -aRK -aDT -aSt -aSP -aDr -aKn -aDr -aHW -aCU -aJg -aJg -aJg -aJg +aCq +aLY +aDn +aDn +aDn +aNo +aNH +aCN +aCN +aCN +aOU +aCq +aPA +aDn +aQh +aDn +aQO +aRk +aCN +aIN +aCN +aGM +aCq +aHK +aHK +aHK +aHK aaM aaM aaM @@ -65540,22 +59394,22 @@ aaM aaM aaM aaM -aTV +aSp +aSz +aTO +aTT +aTZ aUf -aVu -aVz -aVF -aVL -aVO -aVL -aVY -aWd -aVY -aWh -aWm -aTV +aUi aUf -aTV +aUs +aUx +aUs +aUB +aUG +aSp +aSz +aSp aaM aaM "} @@ -65684,112 +59538,112 @@ aaM aaM aaM aaM -aqy -aqH -aqW -aqW -aqW -arz -arE -arW -arW -arW -arW -arW -arW -arW -arW -arW -arW -arW -arW -arW -arW -arW -auW -arW -arW -arW -arW -arW -arW -arW -awu -arW -atP -ask -ayJ -aza -azw -azT -avL -avL -avL -avL -aza -aBG -avL -aCs -aAI -aCV -aCS -aCS -aDF -aDV -aEg -aEs -aCS -aCS -aCS -aFl -aCS -aCS -aCS -aCS -aGv -aCS -aCS -aCS -aHz -aHS -aHS -aJa -aJw -aJT -aKt -aHS -aHS -aLE -aCU +apW +aqf +aqu +aqu +aqu +aqX +arc +aru +aru +aru +aru +aru +aru +aru +aru +aru +aru +aru +aru +aru +aru +aru +aus +aru +aru +aru +aru +aru +aru +aru +avQ +aru +atm +arI +ayf +ayw +ayS +azp +avh +avh +avh +avh +ayw +aBc +avh +aBO +aAe +aCr +aCo +aCo +aDb +aDp +aDx +aDH +aCo +aCo +aCo +aEp +aCo +aCo +aCo +aCo +aFr +aCo +aCo +aCo +aGs +aGI +aGI +aHE +aHY +aIu +aIT +aGI +aGI +aKd +aCq aaM aaM -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aTP -aTY -aTP -aJg +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aSj +aSs +aSj +aHK aaM aaM aaM @@ -65797,22 +59651,22 @@ aaM aaM aaM aaM -aTV +aSp +aSz +aTO +aTT +aTZ aUf -aVu -aVz -aVF -aVL -aVL -aVL -aVY -aVY -aVY -aWh -aWm -aTV aUf -aTV +aUf +aUs +aUs +aUs +aUB +aUG +aSp +aSz +aSp aaM aaM "} @@ -65941,112 +59795,112 @@ aaM aaM aaM aaM -aqy -aqH -aqI -aqW -arp -arz -aqy -arX -asm -asF -arW -atg -asm -asm -asm -asm -asm -asm -asm -asm -asm -asF -arW -atg -asm -asm -asm -asm -asm -asF -awv -awJ -atP -ask -ayJ -aza -azx -azU -aAn -aAG -aAS -aBi -aza -aBG -avL -aCs -aAI -aAq -aDi -aCS -aDH -aCS -aEh -aEt -aED -aER -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aHz -aHS -aHS -aJb -aJx -aJW -aJX -aHS -aHS -aLF -aCU -aMA -aMA -aJg -aJg -aJg -aJg -aOv -aOS -aJg -aPy -aJg -aJg -aJg -aJg -aJg -aRo -aJg -aPy -aJg -aJg -aJg -aTl -aJg -aPy -aJg -aTQ -aTQ -aTQ -aJg +apW +aqf +aqg +aqu +aqN +aqX +apW +arv +arK +asd +aru +asD +arK +arK +arK +arK +arK +arK +arK +arK +arK +asd +aru +asD +arK +arK +arK +arK +arK +asd +avR +awf +atm +arI +ayf +ayw +ayT +azq +azJ +aAc +aAo +aAE +ayw +aBc +avh +aBO +aAe +azM +aCE +aCo +aDd +aCo +aDy +aDI +aDO +aEb +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aGs +aGI +aGI +aHF +aHZ +aIx +aIy +aGI +aGI +aKe +aCq +aKZ +aKZ +aHK +aHK +aHK +aHK +aMS +aNp +aHK +aNV +aHK +aHK +aHK +aHK +aHK +aPL +aHK +aNV +aHK +aHK +aHK +aRG +aHK +aNV +aHK +aSk +aSk +aSk +aHK aaM aaM aaM @@ -66054,22 +59908,22 @@ aaM aaM aaM aaM -aTV -aUf -aTV -aTV -aTV -aVI -aVI -aVI -aVI -aVI -aWe -aTV -aTV -aTV -aUd -aTV +aSp +aSz +aSp +aSp +aSp +aUc +aUc +aUc +aUc +aUc +aUy +aSp +aSp +aSp +aSx +aSp aaM aaM "} @@ -66198,112 +60052,112 @@ aaM aaM aaM aaM -aqy -aqI -aqW -arh -aqW -arp -aqy -arU -ask -asD -arW -ate -ask -atu -ask -ask -ask -ask -ask -atu -ask -asD -arW -ate -ask -ask -atu -ask -ask -asD -awu -arW -atP -ask -ayJ -aza -avL -azV -avL -azV -aAT -aBj -aza -aBG -avL -aCs -aAI -avx -aDj -aDr -aDF -aDW -aEi -aDF -aEE -aDr -aDr -aFm -aFB -aCS -aCS -aGp -aFm -aFB -aCS -aCS -aCU -aHT -aHS -aHS -aJb -aJX -aHS -aHS -aHS -aLG -aCU -aMB -aMY -aMZ -aNA -aNS -aOh -aOw -aOw -aPl -aOw -aOw -aOw -aPl -aOw -aRe -aOw -aPl -aOw -aOw -aOw -aPl -aOw -aQc -aTH -aTL -aTR -aJB -aUh -aJg +apW +aqg +aqu +aqF +aqu +aqN +apW +ars +arI +asb +aru +asB +arI +asR +arI +arI +arI +arI +arI +asR +arI +asb +aru +asB +arI +arI +asR +arI +arI +asb +avQ +aru +atm +arI +ayf +ayw +avh +azr +avh +azr +aAp +aAF +ayw +aBc +avh +aBO +aAe +auT +aCF +aCN +aDb +aDq +aDz +aDb +aDP +aCN +aCN +aEq +aED +aCo +aCo +aFl +aEq +aED +aCo +aCo +aCq +aGJ +aGI +aGI +aHF +aIy +aGI +aGI +aGI +aKf +aCq +aLa +aLx +aLy +aLZ +aMr +aMG +aMT +aMT +aNI +aMT +aMT +aMT +aNI +aMT +aPB +aMT +aNI +aMT +aMT +aMT +aNI +aMT +aOz +aSb +aSf +aSl +aId +aSB +aHK aaM aaM aaM @@ -66311,22 +60165,22 @@ aaM aaM aaM aaM -aTV -aUf -aUf -aUf -aTV -aVM -aVM -aVM -aVM -aVM -aUd -aWg -aUd -aUd -aUd -aTV +aSp +aSz +aSz +aSz +aSp +aUg +aUg +aUg +aUg +aUg +aSx +aUA +aSx +aSx +aSx +aSp aaM aaM "} @@ -66455,112 +60309,112 @@ aaM aaM aaM aaM -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -asS -aqy -aqy -aqy -atF -ask -ask -ask -atE -aqy -aqy -aqy -auX -aqy -aqy -aqy -aqy -avx -avx -avx -avx -avx -axA -avL -ayJ -aza -azy -azW -avL -aAH -aAU -avx -avx -aBH -avL -aCs -avx -avx -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aDF -aDF -aDF -aDF -aFR -aFR -aDF -aDF -aDF -aFR -aFR -aCU -aHU -aHU -aHS -aJy -aJy -aHS -aHS -aHS -aLH -aCU -aMC -aMZ -aMZ -aNB -aNT -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aQd -aTH -aTL -aJB -aPP -aJB -aUm +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +asp +apW +apW +apW +atc +arI +arI +arI +atb +apW +apW +apW +aut +apW +apW +apW +apW +auT +auT +auT +auT +auT +awW +avh +ayf +ayw +ayU +azs +avh +aAd +aAq +auT +auT +aBd +avh +aBO +auT +auT +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aDb +aDb +aDb +aDb +aER +aER +aDb +aDb +aDb +aER +aER +aCq +aGK +aGK +aGI +aIa +aIa +aGI +aGI +aGI +aKg +aCq +aLb +aLy +aLy +aMa +aMs +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aOA +aSb +aSf +aId +aOm +aId +aSG aaM aaM aaM @@ -66568,22 +60422,22 @@ aaM aaM aaM aaM -aTV -aTV -aTV -aUf -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aWn -aTV -aTV -aTV +aSp +aSp +aSp +aSz +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aUH +aSp +aSp +aSp aaM aaM "} @@ -66719,46 +60573,46 @@ aaM aaM aaM aaM -aqy -aqG -aqW -aqW -aqW -aro -aqy -atD -ate -ask -asD -auw -aqy -aqG -aqW -aqW -aqW -aro -aqy -aqy -avD -avG -awi -avG -avx -axz -aya -ayJ -aza -aza -aza -aAm -aza -aza -avx -avx -aBG -aya -aCs -avx +apW +aqe +aqu +aqu +aqu +aqM +apW +ata +asB +arI +asb +atS +apW +aqe +aqu +aqu +aqu +aqM +apW +apW +auZ +avc +avE +avc +auT +awV +axw +ayf +ayw +ayw +ayw +azI +ayw +ayw +auT +auT +aBc +axw +aBO +auT aaM aaM aaM @@ -66766,58 +60620,58 @@ aaM aaM aaM aaM -aCU -aEP -aEP -aEP -aDF -aCS -aCS -aDF -aEP -aDF -aCS -aCS -aCU -aHU -aHU -aJc -aJz -aJY -aJa -aJQ -aLc -aLI -aCU -aMD -aNa -aMZ -aJg -aNU -aLY -aOx -aOT -aLY -aLY -aLY -aLY -aLY -aLY -aLY -aLY -aLY -aOT -aLY -aLY -aTd -aLY -aQe -aTH -aTL -aSw +aCq +aDZ +aDZ +aDZ +aDb +aCo +aCo +aDb +aDZ +aDb +aCo +aCo +aCq +aGK +aGK +aHG +aIb +aIz +aHE +aIr aJB -aUi -aJg +aKh +aCq +aLc +aLz +aLy +aHK +aMt +aKx +aMU +aNq +aKx +aKx +aKx +aKx +aKx +aKx +aKx +aKx +aKx +aNq +aKx +aKx +aRy +aKx +aOB +aSb +aSf +aQR +aId +aSC +aHK aaM aaM aaM @@ -66827,18 +60681,18 @@ aaM aaM aaM aaM -aTV -aUs -aUs -aUs -aUs -aUs -aUs -aUs -aUs -aUs -aUz -aTV +aSp +aSM +aSM +aSM +aSM +aSM +aSM +aSM +aSM +aSM +aST +aSp aaM aaM aaM @@ -66976,46 +60830,46 @@ aaM aaM aaM aaM -aqy -aqH -aqG -aqW -aro -arz -aqy -atB -atP -arU -auk -auu -aqy -aqH -aqG -aqW -aro -arz -aqy -aqy -avE -avG -avG -avG -avx -axz -avL -ayK -azb -azb -azX -avL -ayK -azb -aBk -azb -azX -avL -aCs -avx +apW +aqf +aqe +aqu +aqM +aqX +apW +asY +atm +ars +atG +atQ +apW +aqf +aqe +aqu +aqM +aqX +apW +apW +ava +avc +avc +avc +auT +awV +avh +ayg +ayx +ayx +azt +avh +ayg +ayx +aAG +ayx +azt +avh +aBO +auT aaM aaM aaM @@ -67023,58 +60877,58 @@ aaM aaM aaM aaM -aCU -aCU -aCU -aEP -aDF -aCS -aCS -aDF -aGw -aDF -aCS -aCS -aCU -aCU -aCU -aCU -aCU -aCU -aDF -aDF -aDF -aCU -aCU -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aMA -aMA -aMA -aMA -aMA -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aTP -aTP -aTP -aJg +aCq +aCq +aCq +aDZ +aDb +aCo +aCo +aDb +aFs +aDb +aCo +aCo +aCq +aCq +aCq +aCq +aCq +aCq +aDb +aDb +aDb +aCq +aCq +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aKZ +aKZ +aKZ +aKZ +aKZ +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aSj +aSj +aSj +aHK aaM aaM aaM @@ -67084,18 +60938,18 @@ aaM aaM aaM aaM -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV -aTV +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp +aSp aaM aaM aaM @@ -67233,46 +61087,46 @@ aaM aaM aaM aaM -aqy -asj -aqW -aqW -aqW -atm -aqy -atC -ate -ask -asD -auv -aqy -asj -aqW -aqW -aqW -atm -aqy -aqy -avF -avG -avG -avG -awK -axz -avL -avL -aya -avL -avL -avL -avL -avL -avL -aya -avL -avL -aCs -avx +apW +arH +aqu +aqu +aqu +asJ +apW +asZ +asB +arI +asb +atR +apW +arH +aqu +aqu +aqu +asJ +apW +apW +avb +avc +avc +avc +awg +awV +avh +avh +axw +avh +avh +avh +avh +avh +avh +axw +avh +avh +aBO +auT aaM aaM aaM @@ -67280,58 +61134,58 @@ aaM aaM aaM aaM -aiB +ait aaM -aCU -aEP -aDF -aFS -aCS -aCS -aCS -aCS -aCS -aCS -aCS -aEf -aDF -aJd -aJA -aJZ -aJA -aJA -aJA -aJZ -aLX -aJA -aJA -aJZ -aJA -aJA -aLX -aOy -aMA -aPm -aOw -aOw -aOw -aOw -aOw -aOw -aOw -aRL -aJg -aSu -aSQ -aTe -aTm -aJg +aCq +aDZ +aDb +aES +aCo +aCo +aCo +aCo +aCo +aCo +aCo +aDw +aDb +aHH +aIc +aIA +aIc +aIc +aIc +aIA +aKw +aIc +aIc +aIA +aIc +aIc +aKw +aMV +aKZ +aNJ +aMT +aMT +aMT +aMT +aMT +aMT +aMT +aQi +aHK +aQP +aRl +aRz +aRH +aHK aaM -aJg -aTQ -aTZ -aTQ -aJg +aHK +aSk +aSt +aSk +aHK aaM aaM aaM @@ -67490,46 +61344,46 @@ aaM aaM aaM aaM -aqy -aqH -aqI -aqW -arp -arz -aqy -atB +apW +aqf +aqg +aqu +aqN +aqX +apW +asY +atn +atx +atH atQ -aua -aul -auu -aqy -aqH -aqI -aqW -arp -arz -aqy -aqy -avG -avG -avG -avG -avx -axB -ayb -ayb -azc -ayb -ayb -ayb -ayb -ayb -ayb -ayb -ayb -ayb -aCt -avx +apW +aqf +aqg +aqu +aqN +aqX +apW +apW +avc +avc +avc +avc +auT +awX +axx +axx +ayy +axx +axx +axx +axx +axx +axx +axx +axx +axx +aBP +auT aaM aaM aaM @@ -67537,58 +61391,58 @@ aaM aaM aaM aaM -aiB +ait aaM -aCU -aFn -aDF -aCS -aCS -aCS -aFT -aCS -aCS -aCS -aCS -aHV -aIw -aJe -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aOz -aOU -aNT -aJB -aJB -aJB -aJB -aJB -aJB -aJB -aQd -aSc -aSv -aSR -aTe -aTn -aJg +aCq +aEr +aDb +aCo +aCo +aCo +aET +aCo +aCo +aCo +aCo +aGL +aHh +aHI +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aId +aMW +aNr +aMs +aId +aId +aId +aId +aId +aId +aId +aOA +aQx +aQQ +aRm +aRz +aRI +aHK aaM -aJg -aJg -aJg -aJg -aJg +aHK +aHK +aHK +aHK +aHK aaM aaM aaM @@ -67667,17 +61521,17 @@ aaM aaM aaM aaM -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn aaM aaM aaM @@ -67747,46 +61601,46 @@ aaM aaM aaM aaM -aqy -aqI -aqW -aqW -aqW -arp -aqy -aqy -atR -aub -atR -aqy -aqy -aqI -aqW -aqW -aqW -arp -aqy -aqy -avG -avG -awj -avG -avx -awL -ayc -awL -awL -azz -azz -azz -aAI -aAI -avx -avx -avx -avx -avx -avx +apW +aqg +aqu +aqu +aqu +aqN +apW +apW +ato +aty +ato +apW +apW +aqg +aqu +aqu +aqu +aqN +apW +apW +avc +avc +avF +avc +auT +awh +axy +awh +awh +ayV +ayV +ayV +aAe +aAe +auT +auT +auT +auT +auT +auT aaM aaM aaM @@ -67794,52 +61648,52 @@ aaM aaM aaM aaM -aiB -aiB -aCU -aEP -aDF -aCS -aCS -aGq -aGx -aGE -aCS -aCS -aCS -aHW -aDF -aJf -aJC -aKa -aKu -aKu -aKu -aKa -aLY -aKu -aKu -aNi -aKu -aKu -aOi -aOA -aMA -aPn -aPz -aJB -aJB -aPo -aJB -aJB -aRp -aRM -aJg -aSw -aSS -aTe -aTm -aJg +ait +ait +aCq +aDZ +aDb +aCo +aCo +aFm +aFt +aFA +aCo +aCo +aCo +aGM +aDb +aHJ +aIe +aIB +aIU +aIU +aIU +aIB +aKx +aIU +aIU +aLH +aIU +aIU +aMH +aMX +aKZ +aNK +aNW +aId +aId +aNL +aId +aId +aPM +aQj +aHK +aQR +aRn +aRz +aRH +aHK aaM aaM aaM @@ -67924,17 +61778,17 @@ aaM aaM aaM aaM -ahq -aWU -akj -akF -akK -akK -akZ -akj -akj -aXd -ahq +ahn +aVl +ajT +ako +akt +akt +akI +ajT +ajT +aVp +ahn aaM aaM aaM @@ -68004,45 +61858,45 @@ aaM aaM aaM aaM -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -auc -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -aqy -avx -avx -avx -avx -avx -axC -axC -ayL -awL -awL -azY -aAo -aAJ -avx -avx -aiB +apW +apW +apW +apW +apW +apW +apW +apW +apW +atz +apW +apW +apW +apW +apW +apW +apW +apW +apW +apW +auT +auT +auT +auT +auT +awY +awY +ayh +awh +awh +azu +azK +aAf +auT +auT +ait aaM aaM -aiB +ait aaM aaM aaM @@ -68051,52 +61905,52 @@ aaM aaM aaM aaM -aiB +ait aaM -aCU -aEP -aDF -aFT -aFT -aGr -aGy -aGF -aFT -aFT -aCU -aCU -aCU -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aLZ -aJg -aJg -aJg -aJg -aJg -aOj -aJg -aJg -aJg -aPA +aCq +aDZ +aDb +aET +aET +aFn +aFu +aFB +aET +aET +aCq +aCq +aCq +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aKy +aHK +aHK +aHK +aHK +aHK +aMI +aHK +aHK +aHK +aNX +aOk +aOk +aOV +aOk +aOk aPN -aPN -aQy -aPN -aPN -aRq -aJg -aJg -aJg -aST -aJg -aJg -aJg +aHK +aHK +aHK +aRo +aHK +aHK +aHK aaM aaM aaM @@ -68181,17 +62035,17 @@ aaM aaM aaM aaM -ahq -akj -akx -aky -aky -aky -aky -ale -alk -alo -ahq +ahn +ajT +akg +akh +akh +akh +akh +akM +akS +akV +ahn aaM aaM aaM @@ -68264,95 +62118,95 @@ aaM aaM aaM aaM -aqy -ath -atn -atv -ati -aqy -ask -aqy -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aqy +apW +asE +asK +asS +asF +apW +arI +apW +ait +ait +ait +ait +ait +ait +ait +ait +ait +apW aaM aaM aaM -awL -axD -axC -axC -azd -awL -azZ -azZ -awN -aAV +awh +awZ +awY +awY +ayz +awh +azv +azv +awj +aAr aaM -aiB -aiB -aiB -aiB -aiB -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aDF -aFU -aDF -aCU -aCU -aCU -aDF -aFU -aDF -aCU -aCU -aCU -aCU -aCU -aCU -aCU -aLd -aLJ -aMa -aLJ -aNb -aJg -aNC -aNV -aOk -aNV -aOV -aJg -aPB +ait +ait +ait +ait +ait +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aDb +aEU +aDb +aCq +aCq +aCq +aDb +aEU +aDb +aCq +aCq +aCq +aCq +aCq +aCq +aCq +aJC +aKi +aKz +aKi +aLA +aHK +aMb +aMu +aMJ +aMu +aNs +aHK +aNY +aOl +aOl +aKZ +aOl +aOl aPO -aPO -aMA -aPO -aPO -aRr -aJg -aNS -aPl -aOw -aTf -aJg +aHK +aMr +aNI +aMT +aRA +aHK aaM aaM aaM @@ -68438,17 +62292,17 @@ aaM aaM aaM aaM -ahq -akk -aWX -aky -aky +ahn +ajU +aVo +akh +akh +akF +akh +akN +akS akW -aky -alf -alk -alp -ahq +ahn aaM aaM aaM @@ -68521,95 +62375,95 @@ aaM aaM aaM aaM +asq +asF +asL asT -ati -ato -atw -atG -aqy -aud -asT +atd +apW +atA +asq aaM aaM aaM aaM aaM -aiB +ait aaM aaM aaM -aqy +apW aaM aaM aaM -awL -axE -ayd -axC -aze -awL -azZ -azZ -awN -aAV +awh +axa +axz +awY +ayA +awh +azv +azv +awj +aAr aaM -aiB +ait aaM aaM -aiB +ait aaM -aCU -aDk -aDs -aDI -aDs -aDs -aDs -aDs -aDs -aDs -aDI -aDF -aFV -aDF -aDs -aDI -aDs -aDF -aFV -aDF -aDI -aDs -aDs -aDs -aDI -aDs -aCU -aLe -aLK -aMb -aME -aNc -aJg -aND -aNW -aOl -aOB -aOW -aJg -aNS -aJB -aQc -aMA -aNS -aJB -aQc -aRN -aPD -aJB -aJB -aTg -aJg +aCq +aCG +aCO +aDe +aCO +aCO +aCO +aCO +aCO +aCO +aDe +aDb +aEV +aDb +aCO +aDe +aCO +aDb +aEV +aDb +aDe +aCO +aCO +aCO +aDe +aCO +aCq +aJD +aKj +aKA +aLd +aLB +aHK +aMc +aMv +aMK +aMY +aNt +aHK +aMr +aId +aOz +aKZ +aMr +aId +aOz +aQk +aOa +aId +aId +aRB +aHK aaM aaM aaM @@ -68695,17 +62549,17 @@ aaM aaM aaM aaM -ahq -akj -akz -aky -aky -aky -aky -alg -alk -alq -ahq +ahn +ajT +aki +akh +akh +akh +akh +akO +akS +akX +ahn aaM aaM aaM @@ -68778,95 +62632,95 @@ aaM aaM aaM aaM -asT -ati +asq +asF +asM +asU +asF atp -atx -ati -atS -ask -asT +arI +asq aaM aaM aaM aaM aaM -aiB +ait aaM aaM aaM -aqy +apW aaM aaM aaM -awL -axD -axC -axC -azf -awL -aAa -aAp -awN -aAV +awh +awZ +awY +awY +ayB +awh +azw +azL +awj +aAr aaM -aiB +ait aaM aaM -aiB +ait aaM -aCU -aDk -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDF -aFV -aDF -aDs -aDs -aDs -aDF -aFV -aDF -aDs -aDt -aDt -aDt -aDs -aDs -aCU -aLf -aLL -aMc -aMF -aNd -aJg -aNE -aNX +aCq +aCG +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aDb +aEV +aDb +aCO +aCO +aCO +aDb +aEV +aDb +aCO +aCP +aCP +aCP +aCO +aCO +aCq +aJE +aKk +aKB +aLe +aLC +aHK +aMd +aMw +aML +aMZ +aNu +aHK +aMs aOm -aOC -aOX -aJg -aNT -aPP -aQd -aMA -aNT -aPP -aQd -aRO -aJB -aSx -aJB -aQd -aTo +aOA +aKZ +aMs +aOm +aOA +aQl +aId +aQS +aId +aOA +aRJ aaM aaM aaM @@ -68952,17 +62806,17 @@ aaM aaM aaM aaM -ahq -aWV -akj -akF -akK -akK -akZ -akj -akj -aXe -ahq +ahn +aVm +ajT +ako +akt +akt +akI +ajT +ajT +aVq +ahn aaM aaM aaM @@ -69035,95 +62889,95 @@ aaM aaM aaM aaM -aqy -ati -atq -ati -ati -aqy -ask -asT +apW +asF +asN +asF +asF +apW +arI +asq aaM aaM aaM aaM aaM -aiB +ait aaM aaM aaM -aqy +apW aaM aaM aaM -awL -axF -ayd -axC -axC -awL -azZ -azZ -awN -aAV -aiB -aiB -aiB -aiB -aiB +awh +axb +axz +awY +awY +awh +azv +azv +awj +aAr +ait +ait +ait +ait +ait aaM -aCU -aDk -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDF -aFV -aDF -aDs -aDs -aDs -aDF -aFV -aDF -aDs -aDt -aJh +aCq +aCG +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aDb +aEV +aDb +aCO +aCO +aCO +aDb +aEV +aDb +aCO +aCP +aHL +aIf +aCO +aCO +aCq aJD -aDs -aDs -aCU -aLe -aLM -aMd -aMG -aNc -aJg -aND -aNY -aOn -aOD -aOW -aJg -aPp -aJB -aQe -aMA -aPp -aJB -aQe -aRP -aSd -aSy -aJB -aQd -aJg +aKl +aKC +aLf +aLB +aHK +aMc +aMx +aMM +aNa +aNt +aHK +aNM +aId +aOB +aKZ +aNM +aId +aOB +aQm +aQy +aQT +aId +aOA +aHK aaM aaM aaM @@ -69209,17 +63063,17 @@ aaM aaM aaM aaM -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq -ahq +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn +ahn aaM aaM aaM @@ -69292,95 +63146,95 @@ aaM aaM aaM aaM -aqy -aqy -aqy -aqy -aqy -aqy -ask -asT +apW +apW +apW +apW +apW +apW +arI +asq aaM aaM aaM aaM aaM -aiB +ait aaM aaM aaM -aqy +apW aaM aaM aaM -awL -axG -axC -ayM -azg -awL -azZ -azZ -awN -aAV +awh +axc +awY +ayi +ayC +awh +azv +azv +awj +aAr aaM -aiB +ait aaM aaM -aiB +ait aaM -aCU -aDk -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDF -aFU -aDF -aDs -aDs -aDs -aDF -aFU -aDF -aDt -aDt -aJh -aJD -aDs -aDs -aCU -aLg -aLN -aLN -aLN -aNe -aJg -aNF -aNZ -aNZ -aNZ -aOY -aJg -aPB +aCq +aCG +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aDb +aEU +aDb +aCO +aCO +aCO +aDb +aEU +aDb +aCP +aCP +aHL +aIf +aCO +aCO +aCq +aJF +aKm +aKm +aKm +aLD +aHK +aMe +aMy +aMy +aMy +aNv +aHK +aNY +aOl +aOl +aKZ +aOl +aOl aPO -aPO -aMA -aPO -aPO -aRr -aJg -aSe -aSz -aSU -aQe -aJg +aHK +aQz +aQU +aRp +aOB +aHK aaM aaM aaM @@ -69554,90 +63408,90 @@ aaM aaM aaM aaM -aqy -aud -asT +apW +atA +asq aaM aaM aaM aaM aaM -aiB +ait aaM aaM aaM -aqy +apW aaM aaM -avx -avx -avx -avx -avx -avx -avx -aAb -aAq -aAb -avx -avx -avx -avx -avx -avx -avx -aCU -aDk -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDt -aDu -aFW -aDt -aDu -aDu -aDu -aDt -aHi -aDu -aDt -aDt -aDt -aDt -aDs -aDs -aCU -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aPC -aPN -aPN -aQz -aPN -aPN -aRs -aJg -aJg -aJg -aJg -aJg -aJg +auT +auT +auT +auT +auT +auT +auT +azx +azM +azx +auT +auT +auT +auT +auT +auT +auT +aCq +aCG +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCP +aCQ +aEW +aCP +aCQ +aCQ +aCQ +aCP +aGc +aCQ +aCP +aCP +aCP +aCP +aCO +aCO +aCq +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aNZ +aOk +aOk +aOW +aOk +aOk +aPP +aHK +aHK +aHK +aHK +aHK +aHK aaM aaM aaM @@ -69811,86 +63665,86 @@ aaM aaM aaM aaM -aqy -ask -aqy -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aiB -aqy +apW +arI +apW +ait +ait +ait +ait +ait +ait +ait +ait +ait +apW aaM aaM -avx -awM -axH -awN -awN -awN -axH -awN -awN -awN -awN -axH -aBy -awN -aBR -awM -avx -aCU -aDk +auT +awi +axd +awj +awj +awj +axd +awj +awj +awj +awj +axd +aAU +awj +aBn +awi +auT +aCq +aCG +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCP +aCP +aDJ aDs +aVZ aDs +aWd aDs +aWf aDs -aDs -aDs -aDs -aDt -aDt -aEv -aEa -aYL -aEa -aYY -aEa -aZl -aEa -aEv -aFa -aZE -aJE -aDt -aDs -aDs -aCU -aLh -aLi -aLi -aLi -aLh -aLi -aLi -aLi -aLi -aLh -aMA -aPo -aNT -aJB -aJB -aJB -aJB -aJB -aQd -aPo -aJg +aDJ +aEh +aWp +aIg +aCP +aCP +aCO +aCq +aJG +aJH +aJH +aJH +aJG +aJH +aJH +aJH +aJH +aJG +aKZ +aNL +aMs +aId +aId +aId +aId +aId +aOA +aNL +aHK aaM aaM aaM @@ -70066,88 +63920,88 @@ aaM aaM aaM aaM -aty -aty -aty -aue -aty -aty -aty -aty -aty -aty -aty -aty -aty -aty -aty -aty +asV +asV +asV +atB +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV +asV aaM -avx -awN -awN -awN -awN -awN -awN -awN -awN -awN -awN -awN -aBy -aBI -aBS -aCu -avx -aCU -aDk +auT +awj +awj +awj +awj +awj +awj +awj +awj +awj +awj +awj +aAU +aBe +aBo +aBQ +auT +aCq +aCG +aCO +aCO +aCP +aCQ +aCP +aCP +aCQ +aCP aDs aDs -aDt -aDu -aDt -aDt -aDu -aDt -aEa -aEa -aEa -aYM -aEa -aYZ -aEa -aZm -aEa -aEa -aFa -aJk -aIb -aZU -aDt aDs -aCU -aLi -aLO -aMe -aMH -aMH -aMH -aNG -aLO -aLi -aLi -aOZ -aNS -aPD -aJB -aJB -aJB -aJB -aJB -aRt -aQc -aJg +aVY +aDs +aVY +aDs +aWg +aDs +aDs +aEh +aHN +aGQ +aWy +aCP +aCO +aCq +aJH +aKn +aKD +aLg +aLg +aLg +aMf +aKn +aJH +aJH +aNw +aMr +aOa +aId +aId +aId +aId +aId +aPQ +aOz +aHK aaM aaM aaM @@ -70323,92 +64177,92 @@ aaM aaM aaM aaM -aty -atH -atH -atH -aum +asV +ate +ate +ate atI -atI -atI -atI -atI -atI -avj -atI -atI -atI -aty -aiB -avx -awO -awO -awO -ayN -awO -awO -awO -awO -ayN -awO -awO -aBz -aBJ -ayN -aCv -avx -aCU -aDk +atf +atf +atf +atf +atf +atf +auF +atf +atf +atf +asV +ait +auT +awk +awk +awk +ayj +awk +awk +awk +awk +ayj +awk +awk +aAV +aBf +ayj +aBR +auT +aCq +aCG +aCO +aCP +aDr +aVG +aVF +aVN +aVT aDs -aDt -aDX -aYa -aYc -aYj -aYs -aEa -aEa -aEa -aEa -aYN -aEa -aZa -aEa -aZn -aEa -aZy -aFa -aJk -aJj -aZV -aDt aDs -aCU -aLi -aLO -aLO -aMI -aNf -aNj -aLO -aLO -aLi -aLi -aMA -aNT -aJB -aJB -aJB -aQA -aJB -aJB -aJB -aQd -aJg -aJg -aJg -aJg -aJg +aDs +aDs +aVY +aDs +aVY +aDs +aWg +aDs +aWk +aEh +aHN +aHM +aWz +aWG +aCP +aCq +aJH +aKn +aKn +aLh +aLE +aLI +aKn +aKn +aJH +aJH +aKZ +aMs +aId +aId +aId +aOX +aId +aId +aId +aOA +aHK +aHK +aHK +aHK +aHK aaM aaM aaM @@ -70580,92 +64434,92 @@ aaM aaM aaM aaM -aty -atI -atT -atT -atT -atT -atT -atT -atT -atT -atT -atT -atT -atI -atI -aty +asV +atf +atq +atq +atq +atq +atq +atq +atq +atq +atq +atq +atq +atf +atf +asV aaM -avx -awP -axI -aye -ayO -azh -awP -axI -aye -ayO -azh -awP -axI -aye -aBT -aCw -avx -aCU -aDk -aDt -aDt -aEa -aEa -aEa -aEa -aDu -aYv -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aZB -aIb -aIb -aZW -baf -aDt -aCU -aLi -aLO -aMf -aMl -aMl -aMl -aNH -aOa -aMA -aMA -aMA -aNT -aJB -aJB -aQf -aQB -aQL -aJB -aJB -aQd -aJg -aSA -aSV -aSA -aJg +auT +awl +axe +axA +ayk +ayD +awl +axe +axA +ayk +ayD +awl +axe +axA +aBp +aBS +auT +aCq +aCG +aCP +aCP +aDs +aDs +aDs +aDs +aCQ +aVV +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aWm +aGQ +aGQ +aVY +aIC +aIf +aCq +aJH +aKn +aKE +aKK +aKK +aKK +aMg +aMz +aKZ +aKZ +aKZ +aMs +aId +aId +aOC +aOY +aPi +aId +aId +aOA +aHK +aQV +aRq +aQV +aHK aaM aaM aaM @@ -70837,95 +64691,95 @@ aaM aaM aaM aaM -aty -atI -atT -auf -aun -auf -auf -auf -auf -auf -aun -auf -atT -avu -atI -aty -aiB -avx -awQ -axJ -ayf -avG -azi -awQ -axJ -ayf -avG -azi -awQ -axJ -ayf -aBU -aBU -avx -aCU -aDk -aDu -aXU -aXX -aEa -aEa -aYk -aDt -aYw -aEa -aYE -aEa -aYO -aEa -aZb -aEa -aZo -aEa -aEa -aDt -aHZ -aZN -aZX -aKb -aJD -aCU +asV +atf +atq +atC +atJ +atC +atC +atC +atC +atC +atJ +atC +atq +auQ +atf +asV +ait +auT +awm +axf +axB +avc +ayE +awm +axf +axB +avc +ayE +awm +axf +axB +aBq +aBq +auT +aCq +aCG +aCQ +aVC +aVF +aDs +aDs +aVO +aCP +aVW +aDs +aVY +aDs +aVY +aDs +aVY +aDs +aWg +aDs +aDs +aCP +aGP +aWw +aWA +aHL +aIf +aCq +aJH +aKn +aKF aLi -aLO -aMg -aMJ -aMJ -aMJ -aMl -aOb -aOo -aOE -aOo -aNT -aJB -aJB -aQf -aQC -aQL -aJB -aJB -aRQ -aJg -aSB -aSB -aSB -aJg -aJg -aJg -aJg +aLi +aLi +aKK +aMA +aMN +aNb +aMN +aMs +aId +aId +aOC +aOZ +aPi +aId +aId +aQn +aHK +aQW +aQW +aQW +aHK +aHK +aHK +aHK aaM aaM aaM @@ -71094,95 +64948,95 @@ aaM aaM aaM aaM -aty -atI -atT -auf -auf -auf -auf -auf -auf -auf -auf -auf -avo -avv -atI -aty +asV +atf +atq +atC +atC +atC +atC +atC +atC +atC +atC +atC +auK +auR +atf +asV aaM -avx -awR -axK -ayg -avG -azi -awR -axK -ayg -avG -azi -awR -axK -ayg -aBU -aCx -avx -aCU -aDk -aDu -aDN -aIb -aEa -aYd -aYl -aDt -aYx -aEa -aYF -aEa -aYP -aEa -aZc -aEa -aZp -aEa -aEa -aDt -aDt -aDt -aDt -aJh -aJD -aCU -aLi -aLO +auT +awn +axg +axC +avc +ayE +awn +axg +axC +avc +ayE +awn +axg +axC +aBq +aBT +auT +aCq +aCG +aCQ +aDh +aGQ +aDs +aVI +aVP +aCP +aVV +aDs +aVY +aDs +aVY +aDs +aVY +aDs +aWg +aDs +aDs +aCP +aCP +aCP +aCP +aWH +aIf +aCq +aJH +aKn +aKG +aLj +aLj +aLj aMh -aMK -aMK -aMK -aNI -aLO -aMA -aMA -aMA -aNT -aJB -aJB -aQg -aJg -aQM -aJB -aJB -aQd -aSf -aSC -aSC -aSC -aSC -aSC -aSC -aJg +aKn +aKZ +aKZ +aKZ +aMs +aId +aId +aOD +aHK +aPj +aId +aId +aOA +aQA +aQX +aQX +aQX +aQX +aQX +aQX +aHK aaM aaM aaM @@ -71351,95 +65205,95 @@ aaM aaM aaM aaM -aty -atJ -atT -auf -auf -auf -auf -auf -auf -auf -auf -auf -avp -avv -avH -aty -aiB -avx -awS -axL -ayh -ayP -azi -awS -axL -aAr -ayP -azi -awS -axL -aBK -aBV -aCx -avx -aCU -aDk -aDu -aXV -aIb -aEa -aYe -aYm -aDt -aYy -aEa -aYG -aEa -aYQ -aEa -aZd -aEa -aZq -aEa -aEa -aFa -aZF -aHX -aZY -bag -aJD -aCU -aLi -aLP -aMi -aMl -aMl -aMl -aMl -aLP -aLi -aLi -aMA -aNT -aJB -aJB -aQf -aQD -aQL -aJB -aJB -aQd -aJg -aSD -aSD -aSD -aTp -aSC -aTI -aJg +asV +atg +atq +atC +atC +atC +atC +atC +atC +atC +atC +atC +auL +auR +avd +asV +ait +auT +awo +axh +axD +ayl +ayE +awo +axh +azN +ayl +ayE +awo +axh +aBg +aBr +aBT +auT +aCq +aCG +aCQ +aVD +aGQ +aDs +aVJ +aVP +aCP +aVX +aDs +aVY +aDs +aWa +aDs +aVY +aDs +aWh +aDs +aDs +aEh +aWq +aGN +aWB +aCP +aCP +aCq +aJH +aKo +aKH +aKK +aKK +aKK +aKK +aKo +aJH +aJH +aKZ +aMs +aId +aId +aOC +aPa +aPi +aId +aId +aOA +aHK +aQY +aQY +aQY +aRK +aQX +aSc +aHK aaM aaM aaM @@ -71608,95 +65462,95 @@ aaM aaM aaM aaM -aty -atI -atT -auf -auf -auf -auf -auf -auf -auf -auf -auf -avq -avv -atI -aty +asV +atf +atq +atC +atC +atC +atC +atC +atC +atC +atC +atC +auM +auR +atf +asV aaM -avx -awT -axM -ayi -ayP -azi -awT -axM -ayi -ayP -azi -awT -axM -ayi -aBW -aCx -avx -aCU -aDk -aDu -aDL -aXY -aEk -aYf -aYn -aYt -aYz -aEa -aYH -aEa -aYR -aEa -aZe -aEa -aZr -aEa -aZz -aFa -aZG -aZO -aZZ -aDt +auT +awp +axi +axE +ayl +ayE +awp +axi +axE +ayl +ayE +awp +axi +axE +aBs +aBT +auT +aCq +aCG +aCQ +aDg +aVF +aDA +aVK +aVQ +aVU +aVD aDs -aCU +aVY +aDs +aVU +aDs +aVY +aDs +aVU +aDs +aWl +aEh +aWr +aWr +aWC +aCP +aCO +aCq +aJH +aKo +aKI aLi -aLP -aMj -aMJ -aMJ -aMJ -aMl -aLP aLi -aOF -aOZ -aNT -aJB -aJB -aQf -aQE -aQL -aJB -aJB -aQd -aJg -aSE -aSW -aSE -aJg -aTy -aTy -aJg +aLi +aKK +aKo +aJH +aNc +aNw +aMs +aId +aId +aOC +aPb +aPi +aId +aId +aOA +aHK +aQZ +aRr +aQZ +aHK +aRS +aRS +aHK aaM aaM aaM @@ -71865,95 +65719,95 @@ aaM aaM aaM aaM -aty -atI +asV +atf +atq +atC +atK atT -auf -auo -aux -auf -auE -auf -auY -auo -auf -atT -avw -atI -aty -aiB -avx -awU -axN -ayj -ayP -azi -awU -axN -ayj -ayP -azi -awU -axN -ayj -aBX -aCx -avx -aCU -aDk -aDu -aXW -aIb -aEa -aYg -aYo -aDt -aYA -aEa -aYI -aEa -aYS -aEa -aZf -aEa -aZs -aEa -aEa -aZC -aZH -aHY -baa -aDt +atC +aua +atC +auu +atK +atC +atq +auS +atf +asV +ait +auT +awq +axj +axF +ayl +ayE +awq +axj +axF +ayl +ayE +awq +axj +axF +aBt +aBT +auT +aCq +aCG +aCQ +aVE +aGQ aDs -aCU -aLi -aLP -aMi -aMK -aMK -aMK -aMl -aLP -aLi -aLi -aMA -aNT -aJB -aJB -aQf -aQF -aQL -aJB -aJB -aQd -aJg -aJg -aJg -aJg -aJg -aJg -aJg -aJg +aVJ +aVP +aCP +aVX +aDs +aVY +aDs +aWb +aDs +aVY +aDs +aWi +aDs +aDs +aWn +aWr +aGO +aWB +aCP +aCP +aCq +aJH +aKo +aKH +aLj +aLj +aLj +aKK +aKo +aJH +aJH +aKZ +aMs +aId +aId +aOC +aPc +aPi +aId +aId +aOA +aHK +aHK +aHK +aHK +aHK +aHK +aHK +aHK aaM aaM aaM @@ -72122,93 +65976,98 @@ aaM aaM aaM aaM -aty -atI -atT -atT -atT -auy -auA -atT -auA -auZ -atT -atT -atT -atI -atI -aty +asV +atf +atq +atq +atq +atU +atW +atq +atW +auv +atq +atq +atq +atf +atf +asV aaM -avx -awV -axO -ayk -ayQ -azi -awV -axO -ayk -ayQ -azi -awV -axO -ayk -aBY -aBU -avx -aCU -aDk -aDu -aDJ -aIb -aEa -aYh -aYp -aDt -aYB -aEa -aYJ -aEa -aYT -aEa -aZg -aEa -aZt -aEa -aEa -aDt -aDt -aDt -aDt -aDt +auT +awr +axk +axG +aym +ayE +awr +axk +axG +aym +ayE +awr +axk +axG +aBu +aBq +auT +aCq +aCG +aCQ +aDf +aGQ aDs -aCU -aLi -aLO -aMk -aMl -aNg -aMl -aNJ -aLO -aMA -aMA -aMA -aNT -aJB -aJB -aQg -aJg -aQM -aJB -aJB -aQd -aJg -aJg -aJg -aJg -aJg -aJg +aVL +aVP +aCP +aVV +aDs +aVY +aDs +aVY +aDs +aVY +aDs +aWg +aDs +aDs +aCP +aCP +aCP +aCP +aWI +aIf +aCq +aJH +aKn +aKJ +aKK +aLF +aKK +aMi +aKn +aKZ +aKZ +aKZ +aMs +aId +aId +aOD +aHK +aPj +aId +aId +aOA +aHK +aHK +aHK +aHK +aHK +aHK +aaM +aaM +aaM +aaM +aaM aaM aaM aaM @@ -72229,11 +66088,6 @@ aaM aaM aaM aaM -bnp -boi -bpb -bpU -bqN aaM aaM aaM @@ -72379,122 +66233,122 @@ aaM aaM aaM aaM -aty -atK -atK -aug -aty -aty -aty -aty -aty -aty -aty -avk -atK -atK -atK -aty -aiB -avx -awW -axP -ayl -ayQ -azi -awW -axP -ayl -ayQ -azi -awW -axP -ayl -aBY -aCx -avx -aCU +asV +ath +ath +atD +asV +asV +asV +asV +asV +asV +asV +auG +ath +ath +ath +asV +ait +auT +aws +axl +axH +aym +ayE +aws +axl +axH +aym +ayE +aws +axl +axH +aBu +aBT +auT +aCq +aCO +aVB +aDK +aVF aDs -aXT -aEw -aXZ -aEa -aEa -aYq -aDt -aYC -aEa -aYK -aEa -aYU -aEa -aZh -aEa -aZu -aEa -aEa -aDt -aZI -aZP -bab -bah -aJD -aCU +aDs +aVR +aCP +aVW +aDs +aVY +aDs +aVY +aDs +aVY +aDs +aWg +aDs +aDs +aCP +aWs +aWu +aWD +aHL +aIf +aCq +aJH +aKn +aKK aLi -aLO -aMl -aMJ -aMJ -aMJ -aMl -aOb -aOo -aOE -aOo -aNT -aJB -aJB -aQf -aQE -aQL -aJB -aJB -aQd -aJg -aSF -aSF -aJg -aTq -aJg +aLi +aLi +aKK +aMA +aMN +aNb +aMN +aMs +aId +aId +aOC +aPb +aPi +aId +aId +aOA +aHK +aRa +aRa +aHK +aRL +aHK aaM aaM aaM aaM aaM -baF -bbx -bcp -bdh -bdZ -beR -bfJ -bgB -bht -bil -bjd -bjV -bkN -blF -bmx -bnq -boj -bpc -bpV -bqO -brG -bsy -btq -bui +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -72636,122 +66490,122 @@ aaM aaM aaM aaM -aty -atL -atL -atL -atL -atL -atL -atL -atL -atL -atL -atL -atL -atL -atL -aty +asV +ati +ati +ati +ati +ati +ati +ati +ati +ati +ati +ati +ati +ati +ati +asV aaM -avx -awX -axQ +auT +awt +axm +axI aym -ayQ -azi -awX -axQ +ayE +awt +axm +axI aym -ayQ -azi -awX -axQ -aym -aBY -aCx -avx -aCU +ayE +awt +axm +axI +aBu +aBT +auT +aCq +aCO +aCP +aCP aDs -aDt -aDt -aEa -aEa -aEa -aEa -aDu -aYD -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aEa -aDt -aZJ -aZQ -bac -aJh -aJD -aCU -aLi -aLO -aMm -aMl -aMl -aMl -aNK -aOa -aMA -aMA -aMA -aNT -aJB -aJB -aQf -aQG -aQL -aJB -aJB -aQd -aSg -aSC -aSC -aSC -aSC -aJg +aDs +aDs +aDs +aCQ +aVV +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aDs +aCP +aWs +aWu +aWD +aID +aIf +aCq +aJH +aKn +aKL +aKK +aKK +aKK +aMj +aMz +aKZ +aKZ +aKZ +aMs +aId +aId +aOC +aPd +aPi +aId +aId +aOA +aQB +aQX +aQX +aQX +aQX +aHK aaM aaM aaM aaM aaM -baG -bby -bcq -bdi -bea -beS -bfK -bgC -bhu -bim -bje -bjW -bkO -blG -bmy -bnr -bok -bpd -bpW -bqP -brH -bsz -btr -buj +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -72767,7 +66621,7 @@ aaN aaN aaN aaN -aeP +aeO aaN aaN aaN @@ -72778,7 +66632,7 @@ aaN aaN aaN aaN -aeP +aeO aaM aaM aaM @@ -72910,105 +66764,105 @@ aaM aaM aaM aaM -avx -awY -axR -ayn -ayQ -azi -awY -axR -ayn -ayQ -azi -awY -axR -ayn -aBY -aCx -avx -aCU +auT +awu +axn +axJ +aym +ayE +awu +axn +axJ +aym +ayE +awu +axn +axJ +aBu +aBT +auT +aCq +aCO +aCO +aCP +aDr +aVH +aVM +aVS +aVT aDs aDs -aDt -aDX -aYb -aYi -aYr -aYu -aEa -aEa -aEa -aEa -aYV -aEa -aZi -aEa -aZv -aEa -aZA -aDt -aZK -aZR -bad -aKd -aJD -aCU -aLi -aLO -aLO -aMJ -aMJ -aMJ -aLO -aLO +aDs +aDs +aVY +aDs +aVY +aDs +aWg +aDs +aWk +aCP +aWt +aWx +aWE +aWG +aCP +aCq +aJH +aKn +aKn aLi aLi -aMA -aNT -aJB -aJB -aJB -aQH -aJB -aJB -aJB -aQd -aJg -aSG -aSX -aJg -aTr -aJg +aLi +aKn +aKn +aJH +aJH +aKZ +aMs +aId +aId +aId +aPe +aId +aId +aId +aOA +aHK +aRb +aRs +aHK +aRM +aHK aaM aaM aaM aaM aaM -baH -bbz -bcr -bdj -beb -beT -bfL -bgD -bhv -bin -bjf -bjX -bkP -blH -bmz -bns -bol -bpe -bpX -bqQ -brI -bsA -bts -buk +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -73024,7 +66878,7 @@ abn abn abn abn -aeP +aeO abn abn abn @@ -73035,7 +66889,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -73167,105 +67021,105 @@ aaM aaM aaM aaM -avx -awZ -axS -ayo -ayQ -azi -azA -axS -ayo -ayQ -azi -azA -axS -ayo -aBY -aCy -avx -aCU +auT +awv +axo +axK +aym +ayE +ayW +axo +axK +aym +ayE +ayW +axo +axK +aBu +aBU +auT +aCq +aCO +aCO +aCO +aCP +aCQ +aCP +aCP +aCP +aCP aDs aDs aDs -aDt -aDu -aDt -aDt -aDt -aDt -aEa -aEa -aEa -aYW -aEa -aZj -aEa -aZw -aEa -aEa -aZD -aZL -aZS -bae -bai -aDt -aCU -aLi -aLi -aLO -aML -aNh -aNk -aLO -aLi -aLi -aLi -aOZ -aPp -aPz -aJB -aJB -aJB -aJB -aJB -aRp -aQe -aJg -aSH -aSH -aJg -aTs -aJg +aVY +aDs +aVY +aDs +aWg +aDs +aDs +aWo +aWu +aWu +aWF +aCP +aCO +aCq +aJH +aJH +aKn +aLk +aLG +aLJ +aKn +aJH +aJH +aJH +aNw +aNM +aNW +aId +aId +aId +aId +aId +aPM +aOB +aHK +aRc +aRc +aHK +aRN +aHK aaM aaM aaM aaM aaM -baI -bbA -bcs -bdk -bec -beU -bfM -bgE -bhw -bio -bjg -bjY -bkQ -blI -bmA -bnt -bom -bpf -bpY -bqR -brJ -bsB -btt -bul +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -73281,7 +67135,7 @@ abn abn abn abn -aeP +aeO abn abn abn @@ -73292,7 +67146,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -73424,105 +67278,105 @@ aaM aaM aaM aaM -avx -axa -axT -ayp -ayQ -azi -axa -axT -ayp -ayQ -azi -axa -axT -ayp -aBZ -aBU -avx -aCU +auT +aww +axp +axL +aym +ayE +aww +axp +axL +aym +ayE +aww +axp +axL +aBv +aBq +auT +aCq +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCP +aCP +aDL aDs +aWc aDs +aWe aDs +aWj aDs -aDs -aDs -aDs -aDs -aDt -aDt -aEz -aEa -aYX -aEa -aZk -aEa -aZx -aEa -aEz -aDt -aZM -aZT -aDt -aDt -aDs -aCU -aLi -aLi -aLO -aLO -aLO -aLO -aLO -aLi -aLi -aLi -aMA -aPo -aNT -aJB -aJB -aJB -aJB -aJB -aQd -aPo -aJg -aJg -aJg -aJg -aJg -aJg +aDL +aCP +aWv +aWv +aCP +aCP +aCO +aCq +aJH +aJH +aKn +aKn +aKn +aKn +aKn +aJH +aJH +aJH +aKZ +aNL +aMs +aId +aId +aId +aId +aId +aOA +aNL +aHK +aHK +aHK +aHK +aHK +aHK aaM aaM aaM aaM aaM -baJ -bbB -bct -bdl -bed -beV -bfN -bgF -bhx -bip -bjh -bjZ -bkR -blJ -bmB -bnu -bon -bpg -bpZ -bqS -brK -bsC -btu -bum +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -73538,7 +67392,7 @@ abn abn abn abn -aeP +aeO abn abn abn @@ -73549,7 +67403,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -73681,71 +67535,71 @@ aaM aaM aaM aaM -avx -axb -axb -axb -ayR -ayR -azB -azB -azB -ayR -ayR -aBl -aBl -aBl -ayR -ayR -avx -aCU -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDt -aDu -aDu -aDt -aDu -aDu -aDu -aDt -aDu -aDu -aDt -aDt -aDt -aDt -aDt -aDs -aCU -aLj -aLi -aLi -aLi -aLi -aLi -aLi -aLi -aLj -aLi -aJg -aJg -aPn -aPQ -aLY -aQI -aLY -aPQ -aRu -aJg -aJg +auT +awx +awx +awx +ayn +ayn +ayX +ayX +ayX +ayn +ayn +aAH +aAH +aAH +ayn +ayn +auT +aCq +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCP +aCQ +aCQ +aCP +aCQ +aCQ +aCQ +aCP +aCQ +aCQ +aCP +aCP +aCP +aCP +aCO +aCO +aCq +aJI +aJH +aJH +aJH +aJH +aJH +aJH +aJH +aJI +aJH +aHK +aHK +aNK +aOn +aKx +aPf +aKx +aOn +aPR +aHK +aHK aaM aaM aaM @@ -73756,30 +67610,30 @@ aaM aaM aaM aaM -baK -bbC -bcu -bdm -bee -beW -bfO -bgG -bhy -biq -bji -bka -bkS -blK -bmC -bnv -boo -bph -bqa -bqT -brL -bsD -btv -bun +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -73795,7 +67649,7 @@ abn abn abn abn -aeP +aeO abn abn abn @@ -73806,7 +67660,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -73955,54 +67809,54 @@ aaM aaM aaM aaM -aCU -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDt -aDt -aJh -aJD -aDs -aDs -aCU -aJg -aLQ -aLQ -aLQ -aLQ -aLQ -aLQ -aLQ -aJg -aJg -aJg -aJg -aJg -aMA -aMA -aMA -aMA -aMA -aJg -aJg -aJg +aCq +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCP +aCP +aHL +aIf +aCO +aCO +aCq +aHK +aKp +aKp +aKp +aKp +aKp +aKp +aKp +aHK +aHK +aHK +aHK +aHK +aKZ +aKZ +aKZ +aKZ +aKZ +aHK +aHK +aHK aaM aaM aaM @@ -74013,30 +67867,30 @@ aaM aaM aaM aaM -baL -bbD -bcv -bdn -bef -beX -bfP -bgH -bhz -bir -bjj -bkb -bkT -blL -bmD -bnw -bop -bpi -bqb -bqU -brM -bsE -btw -buo +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -74052,7 +67906,7 @@ abn abn abn abn -aeP +aeO abn abn abn @@ -74063,7 +67917,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -74212,33 +68066,33 @@ aaM aaM aaM aaM -aCU -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDt -aJh -aJD -aDs -aDs -aCU +aCq +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCP +aHL +aIf +aCO +aCO +aCq aaM aaM aaM @@ -74270,30 +68124,30 @@ aaM aaM aaM aaM -baM -bbE -bcw -bdo -beg -beY -bfQ -bgI -bhA -bis -bjk -bkc -bkU -blM -bmE -bnx -boq -bpj -bqc -bqV -brN -bsF -btx -bup +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -74309,7 +68163,7 @@ abn abn abn abn -aeP +aeO abn abn abn @@ -74320,7 +68174,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -74469,33 +68323,33 @@ aaM aaM aaM aaM -aCU -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDt -aDt -aDt -aDs -aDs -aCU +aCq +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCP +aCP +aCP +aCO +aCO +aCq aaM aaM aaM @@ -74527,30 +68381,30 @@ aaM aaM aaM aaM -baN -bbF -bcx -bdp -beh -beZ -bfR -bgJ -bhB -bit -bjl -bkd -bkV -blN -bmF -bny -bor -bpk -bqd -bqW -brO -bsG -bty -buq +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -74566,7 +68420,7 @@ abn abn abn abn -aeP +aeO abn abn abn @@ -74577,7 +68431,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -74726,33 +68580,33 @@ aaM aaM aaM aaM -aCU -aDk -aDs -aDO -aDs -aDs -aDs -aDs -aDs -aDs -aDO -aDs -aDs -aDs -aDs -aDO -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDs -aDO -aDs -aCU +aCq +aCG +aCO +aDi +aCO +aCO +aCO +aCO +aCO +aCO +aDi +aCO +aCO +aCO +aCO +aDi +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aCO +aDi +aCO +aCq aaM aaM aaM @@ -74784,30 +68638,30 @@ aaM aaM aaM aaM -baO -bbG -bcy -bdq -bei -bfa -bfS -bgK -bhC -biu -bjm -bke -bkW -blO -bmG -bnz -bos -bpl -bqe -bqX -brP -bsH -btz -bur +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -74823,7 +68677,7 @@ aaN aaN aaN aaN -aeP +aeO aaN aaN aaN @@ -74834,7 +68688,7 @@ aaN aaN aaN aaN -aeP +aeO aaM aaM aaM @@ -74983,33 +68837,33 @@ aaM aaM aaM aaM -aCU -aCU -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aDv -aCU +aCq +aCq +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCR +aCq aaM aaM aaM @@ -75041,30 +68895,30 @@ aaM aaM aaM aaM -baP -bbH -bcz -bdr -bej -bfb -bfT -bgL -bhD -biv -bjn -bkf -bkX -blP -bmH -bnA -bot -bpm -bqf -bqY -brQ -bsI -btA -bus +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -75079,8 +68933,8 @@ acN acN acN acN -aee -aeP +aed +aeO abn abn abn @@ -75091,7 +68945,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -75298,30 +69152,30 @@ aaM aaM aaM aaM -baQ -bbI -bcA -bds -bek -bfc -bfU -bgM -bhE -biw -bjo -bkg -bkY -blQ -bmI -bnB -bou -bpn -bqg -bqZ -brR -bsJ -btB -but +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -75335,9 +69189,9 @@ ack acN acN acN -aee -aeA -aeP +aed +aez +aeO abn abn abn @@ -75348,7 +69202,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -75555,30 +69409,30 @@ aaM aaM aaM aaM -baR -bbJ -bcB -bdt -bel -bfd -bfV -bgN -bhF -bix -bjp -bkh -bkZ -blR -bmJ -bnC -bov -bpo -bqh -bra -brS -bsK -btC -buu +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -75589,12 +69443,12 @@ abp abV acm acm -adj -adC -adJ -aef -aef -aeP +adi +adB +adI +aee +aee +aeO abn abn abn @@ -75605,31 +69459,7 @@ abn abn abn abn -aeP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM +aeO aaM aaM aaM @@ -75836,6 +69666,30 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -75846,12 +69700,12 @@ abp abV acm acm -adk -adD -adK -aef -aef -aeP +adj +adC +adJ +aee +aee +aeO abn abn abn @@ -75862,31 +69716,7 @@ abn abn abn abn -aeP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM +aeO aaM aaM aaM @@ -76093,6 +69923,30 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -76103,12 +69957,12 @@ abp abV acm acm -adl -adE -adL -aef -aef -aeP +adk +adD +adK +aee +aee +aeO abn abn abn @@ -76119,31 +69973,7 @@ abn abn abn abn -aeP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM +aeO aaM aaM aaM @@ -76350,6 +70180,30 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -76363,9 +70217,9 @@ acn acO acO acO -aeg -aeA -aeP +aef +aez +aeO abn abn abn @@ -76376,31 +70230,7 @@ abn abn abn abn -aeP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM +aeO aaM aaM aaM @@ -76607,6 +70437,30 @@ aaM aaM aaM aaM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -76621,8 +70475,8 @@ acO acO acO acO -aeg -aeP +aef +aeO abn abn abn @@ -76633,7 +70487,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -76840,30 +70694,30 @@ aaM aaM aaM aaM -baS -bbK -bcC -bdu -bem -bfe -bfW -bgO -bhG -biy -bjq -bki -bla -blS -bmK -bnD -bow -bpp -bqi -brb -brT -bsL -btD -buv +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -76879,7 +70733,7 @@ aaN aaN aaN aaN -aeP +aeO aaN aaN aaN @@ -76890,7 +70744,7 @@ aaN aaN aaN aaN -aeP +aeO aaM aaM aaM @@ -77097,30 +70951,30 @@ aaM aaM aaM aaM -baT -bbL -bcD -bdv -ben -bff -bfX -bgP -bhH -biz -bjr -bkj -blb -blT -bmL -bnE -box -bpq -bqj -brc -brU -bsM -btE -buw +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -77131,11 +70985,11 @@ abs abX aco acP -adm +adl acP -adm +adl acP -adm +adl aaO abn abn @@ -77147,7 +71001,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -77354,30 +71208,30 @@ aaM aaM aaM aaM -baU -bbM -bcE -bdw -beo -bfg -bfY -bgQ -bhI -biA -bjs -bkk -blc -blU -bmM -bnF -boy -bpr -bqk -brd -brV -bsN -btF -bux +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -77388,9 +71242,9 @@ abs abY acp acQ -adn +adm acQ -adn +adm acQ acP aaO @@ -77404,7 +71258,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -77611,30 +71465,30 @@ aaM aaM aaM aaM -baV -bbN -bcF -bdx -bep -bfh -bfZ -bgR -bhJ -biB -bjt -bkl -bld -blV -bmN -bnG -boz -bps -bql -bre -brW -bsO -btG -buy +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -77646,10 +71500,10 @@ abZ acq acR acQ -adn -acQ -adn adm +acQ +adm +adl aaO abn abn @@ -77661,7 +71515,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -77868,30 +71722,30 @@ aaM aaM aaM aaM -baW -bbO -bcG -bdy -beq -bfi -bga -bgS -bhK -biC -bju -bkm -ble -blW -bmO -bnH -boA -bpt -bqm -brf -brX -bsP -btH -buz +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -77902,11 +71756,11 @@ abs aca acr acS -ado -ado -ado -ado -aeB +adn +adn +adn +adn +aeA aaO abn abn @@ -77918,7 +71772,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -78125,30 +71979,30 @@ aaM aaM aaM aaM -baX -bbP -bcH -bdz -ber -bfj -bgb -bgT -bhL -biD -bjv -bkn -blf -blX -bmP -bnI -boB -bpu -bqn -brg -brY -bsQ -btI -buA +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -78160,10 +72014,10 @@ abZ acs acT acU -adp +ado acU +ado adp -adq aaO abn abn @@ -78175,7 +72029,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -78226,77 +72080,77 @@ aaM aaM aaM aaM -aly -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -asG -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +alc +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ase +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -78382,30 +72236,30 @@ aaM aaM aaM aaM -baY -bbQ -bcI -bdA -bes -bfk -bgc -bgU -bhM -biE -bjw -bko -blg -blY -bmQ -bnJ -boC -bpv -bqo -brh -brZ -bsR -btJ -buB +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -78416,9 +72270,9 @@ abs abY act acU -adp +ado acU -adp +ado acU acV aaO @@ -78432,7 +72286,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -78483,7 +72337,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -78553,7 +72407,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -78639,30 +72493,30 @@ aaM aaM aaM aaM -baZ -bbR -bcJ -bdB -bet -bfl -bgd -bgV -bhN -biF -bjx -bkp -blh -blZ -bmR -bnK -boD -bpw -bqp -bri -bsa -bsS -btK -buC +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -78673,11 +72527,11 @@ abs abX aco acV -adq +adp acV -adq +adp acV -adq +adp aaO abn abn @@ -78689,7 +72543,7 @@ abn abn abn abn -aeP +aeO aaM aaM aaM @@ -78740,7 +72594,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -78810,7 +72664,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -78896,30 +72750,30 @@ aaM aaM aaM aaM -bba -bbS -bcK -bdC -beu -bfm -bge -bgW -bhO -biG -bjy -bkq -bli -bma -bmS -bnL -boE -bpx -bqq -brj -bsb -bsT -btL -buD +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -78946,7 +72800,7 @@ aaN aaN aaN aaN -aeP +aeO aaM aaM aaM @@ -78997,7 +72851,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79067,7 +72921,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79153,30 +73007,30 @@ aaM aaM aaM aaM -bbb -bbT -bcL -bdD -bev -bfn -bgf -bgX -bhP -biH -bjz -bkr -blj -bmb -bmT -bnM -boF -bpy -bqr -brk -bsc -bsU -btM -buE +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -79192,18 +73046,18 @@ abu abu abu abv -aeQ -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -agZ +aeP +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +agW aaM aaM aaM @@ -79254,7 +73108,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79324,7 +73178,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79410,30 +73264,30 @@ aaM aaM aaM aaM -bbc -bbU -bcM -bdE -bew -bfo -bgg -bgY -bhQ -biI -bjA -bks -blk -bmc -bmU -bnN -boG -bpz -bqs -brl -bsd -bsV -btN -buF +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -79449,18 +73303,18 @@ abu abu abu abu -aeQ -aeV -aeV -aeV -afs -aeV -aeV -aeV -aeV -afs -aeV -agZ +aeP +aeU +aeU +aeU +afr +aeU +aeU +aeU +aeU +afr +aeU +agW aaM aaM aaM @@ -79473,35 +73327,35 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -79511,7 +73365,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79581,7 +73435,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79667,30 +73521,30 @@ aaM aaM aaM aaM -bbd -bbV -bcN -bdF -bex -bfp -bgh -bgZ -bhR -biJ -bjB -bkt -bll -bmd -bmV -bnO -boH -bpA -bqt -brm -bse -bsW -btO -buG +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -79706,18 +73560,18 @@ abu acb abu abu -aeQ -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -agZ +aeP +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +agW aaM aaM aaM @@ -79730,7 +73584,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79746,8 +73600,8 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -79758,7 +73612,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79768,7 +73622,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79838,7 +73692,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79924,30 +73778,30 @@ aaM aaM aaM aaM -bbe -bbW -bcO -bdG -bey -bfq -bgi -bha -bhS -biK -bjC -bku -blm -bme -bmW -bnP -boI -bpB -bqu -brn -bsf -bsX -btP -buH +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -79963,18 +73817,18 @@ abu abu abu abu -aeQ -aeV -afs -aeV -aeV -aeV -aeV -afs -aeV -aeV -aeV -agZ +aeP +aeU +afr +aeU +aeU +aeU +aeU +afr +aeU +aeU +aeU +agW aaM aaM aaM @@ -79987,7 +73841,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -79998,14 +73852,14 @@ aaM aaM aaM aaM -aid +ahV aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -80015,7 +73869,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80025,7 +73879,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80046,9 +73900,9 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -80095,7 +73949,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80181,30 +74035,30 @@ aaM aaM aaM aaM -bbf -bbX -bcP -bdH -bez -bfr -bgj -bhb -bhT -biL -bjD -bkv -bln -bmf -bmX -bnQ -boJ -bpC -bqv -bro -bsg -bsY -btQ -buI +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -80220,18 +74074,18 @@ abu abu abu acb -aeQ -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -agZ +aeP +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +agW aaM aaM aaM @@ -80244,7 +74098,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80255,14 +74109,14 @@ aaM aaM aaM aaM -aid +ahV aaM aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -80272,7 +74126,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80282,7 +74136,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80302,11 +74156,11 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -80352,7 +74206,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80438,30 +74292,30 @@ aaM aaM aaM aaM -bbg -bbY -bcQ -bdI -beA -bfs -bgk -bhc -bhU -biM -bjE -bkw -blo -bmg -bmY -bnR -boK -bpD -bqw -brp -bsh -bsZ -btR -buJ +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -80477,18 +74331,18 @@ acb abu abu abu -aeQ -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -agZ +aeP +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +agW aaM aaM aaM @@ -80501,7 +74355,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80512,7 +74366,7 @@ aaM aaM aaM aaM -aid +ahV aaM aaM aaM @@ -80529,7 +74383,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80539,7 +74393,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80559,12 +74413,12 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -80609,7 +74463,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -80695,30 +74549,30 @@ aaM aaM aaM aaM -bbh -bbZ -bcR -bdJ -beB -bft -bgl -bhd -bhV -biN -bjF -bkx -blp -bmh -bmZ -bnS -boL -bpE -bqx -brq -bsi -bta -btS -buK +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -80734,18 +74588,205 @@ abu abu abu abu -aeQ -aeV -aeV -aeV -afs -aeV -aeV -aeV -aeV -afs -aeV -agZ +aeP +aeU +aeU +aeU +afr +aeU +aeU +aeU +aeU +afr +aeU +agW +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahV +aiV +aiw +ajb +ajh +ajm +aVh +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahV +ahV +ahV +ahV +ahV +ahV +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahV +ahV +ahV +ahV +ahV +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM aaM aaM aaM @@ -80758,7 +74799,6 @@ aaM aaM aaM aaM -ahU aaM aaM aaM @@ -80766,216 +74806,30 @@ aaM aaM aaM aaM -aid -ajd -aiE -ajj -ajq -ajv aWP -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aid -aid -aid -aid -aid -aid -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aid -aid -aid -aid -aid -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -ahU -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -aaM -bbi -bca -bcS -bdK -beC -bfu -bgm -bhe -bhW -biO -bjG -bky -blq -bmi -bna -bnT -boM -bpF -bqy -brr -bsj -btb -btT -buL +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -80991,7 +74845,7 @@ aaN aaN aaN aaN -aeQ +aeP aaN aaN aaN @@ -81002,7 +74856,7 @@ aaN aaN aaN aaN -agZ +agW aaM aaM aaM @@ -81015,7 +74869,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81023,19 +74877,19 @@ aaM aaM aaM aaM -aid -aid -ajf -ajk -aiO -aiM +ahV +ahV +aiX +ajc +aiG +aiE aaM aaM aaM -aje -aiB +aiW +ait aaM -aiY +aiQ aaM aaM aaM @@ -81043,7 +74897,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81053,7 +74907,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81074,12 +74928,12 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -81089,13 +74943,13 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -81123,7 +74977,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81209,30 +75063,30 @@ aaM aaM aaM aaM -bbj -bcb -bcT -bdL -beD -bfv -bgn -bhf -bhX -biP -bjH -bkz -blr -bmj -bnb -bnU -boN -bpG -bqz -brs -bsk -btc -btU -buM +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -81245,21 +75099,21 @@ abN abN abN abN -adM +adL abN abw -aeQ -aeW -aeW -aeW -aeW -aeW -aeW -aeW -agJ -aeW -aeW -agZ +aeP +aeV +aeV +aeV +aeV +aeV +aeV +aeV +agG +aeV +aeV +agW aaM aaM aaM @@ -81272,7 +75126,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81280,18 +75134,18 @@ aaM aaM aaM aaM -aid -aid -aid -ajj -aiB -aiX +ahV +ahV +ahV +ajb +ait +aiP aaM aaM aaM -aiE -akA -aiX +aiw +akj +aiP aaM aaM aaM @@ -81300,7 +75154,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81310,7 +75164,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81332,10 +75186,10 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -81345,13 +75199,13 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -81380,7 +75234,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81466,30 +75320,30 @@ aaM aaM aaM aaM -bbk -bcc -bcU -bdM -beE -bfw -bgo -bhg -bhY -biQ -bjI -bkA -bls -bmk -bnc -bnV -boO -bpH -bqA -brt -bsl -btd -btV -buN +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -81504,19 +75358,19 @@ aby aby aby aby -aeC -aeQ -aeW -aft -aeW -aeW -aeW -aeW -aeW -aeW -afW -aeW -agZ +aeB +aeP +aeV +afs +aeV +aeV +aeV +aeV +aeV +aeV +afT +aeV +agW aaM aaM aaM @@ -81529,35 +75383,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aid +ahV aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM -aiB +ait aaM aaM -aid +ahV aaM aaM aaM aaM -aid +ahV aaM aaM -ahU +ahM aaM aaM aaM @@ -81567,7 +75421,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81601,13 +75455,13 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -81616,8 +75470,8 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -81637,7 +75491,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81723,30 +75577,30 @@ aaM aaM aaM aaM -bbl -bcd -bcV -bdN -beF -bfx -bgp -bhh -bhZ -biR -bjJ -bkB -blt -bml -bnd -bnW -boP -bpI -bqB -bru -bsm -bte -btW -buO +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -81759,21 +75613,21 @@ acu acW acW acu -adN +adM aby aby -aeQ -aeW -aeW -aeW -aWL -aeW -aeW -aeW -aeW -aeW -aeW -agZ +aeP +aeV +aeV +aeV +aVf +aeV +aeV +aeV +aeV +aeV +aeV +agW aaM aaM aaM @@ -81786,7 +75640,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81795,26 +75649,26 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM aaM -akm +ajV aaM aaM aaM aaM aaM -ajd -aiB +aiV +ait aaM aaM -ajv -ahU +ajm +ahM aaM aaM aaM @@ -81824,7 +75678,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81858,11 +75712,11 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -81873,9 +75727,9 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -81894,7 +75748,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -81980,30 +75834,30 @@ aaM aaM aaM aaM -bbm -bce -bcW -bdO -beG -bfy -bgq -bhi -bia -biS -bjK -bkC -blu -bmm -bne -bnX -boQ -bpJ -bqC -brv -bsn -btf -btX -buP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -82016,21 +75870,21 @@ acu acW acW acu -adO +adN abO abz -aeQ -aeW -aeW -aeW -aeW -afW -aeW -aeW -aeW -aWO -aeW -agZ +aeP +aeV +aeV +aeV +aeV +afT +aeV +aeV +aeV +aVf +aeV +agW aaM aaM aaM @@ -82043,14 +75897,14 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM aaM -aid +ahV aaM aaM aaM @@ -82059,19 +75913,19 @@ aaM aaM aaM aaM -ajW -ajW -ajW -ajW -ajv -aWZ +ajK +ajK +ajK +ajK +ajm +aVh aaM -alh -ajl -aiN +akP +ajd +aiF aaM aaM -ahU +ahM aaM aaM aaM @@ -82081,7 +75935,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82131,8 +75985,8 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -82151,7 +76005,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82237,30 +76091,30 @@ aaM aaM aaM aaM -bbn -bcf -bcX -bdP -beH -bfz -bgr -bhj -bib -biT -bjL -bkD -blv -bmn -bnf -bnY -boR -bpK -bqD -brw -bso -btg -btY -buQ +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -82273,21 +76127,21 @@ acu acW acW acu -adP +adO aby aby -aeQ -aeW -aeW -aeW -aWM -aeW -aeW -aft -aeW -aeW -agJ -agZ +aeP +aeV +aeV +aeV +aVg +aeV +aeV +afs +aeV +aeV +agG +agW aaM aaM aaM @@ -82300,7 +76154,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82308,27 +76162,27 @@ aaM aaM aaM aaM -aiX -aje -aiY +aiP +aiW +aiQ aaM aaM aaM aaM -aid -ajW -ajW -ajW -ajW -akL -ajL +ahV +ajK +ajK +ajK +ajK +aku +ajB aaM -ali -aiN -aiB +akQ +aiF +ait aaM aaM -ahU +ahM aaM aaM aaM @@ -82338,7 +76192,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82408,7 +76262,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82494,30 +76348,30 @@ aaM aaM aaM aaM -bbo -bcg -bcY -bdQ -beI -bfA -bgs -bhk -bic -biU -bjM -bkE -blw -bmo -bng -bnZ -boS -bpL -bqE -brx -bsp -bth -btZ -buR +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -82532,19 +76386,19 @@ aby aby aby aby -aeD -aeQ -aeW -aeW -aeW -aeW -aeW -aeW -aeW -agJ -aeW -aeW -agZ +aeC +aeP +aeV +aeV +aeV +aeV +aeV +aeV +aeV +agG +aeV +aeV +agW aaM aaM aaM @@ -82557,7 +76411,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82565,27 +76419,27 @@ aaM aaM aaM aaM -aiY +aiQ aaM aaM aaM aaM aaM -aid -aid -ajW -ajW -ajW -ajW -ajv -aXa +ahV +ahV +ajK +ajK +ajK +ajK +ajm +aVi aaM aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82595,7 +76449,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82609,12 +76463,12 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -82665,7 +76519,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82751,30 +76605,30 @@ aaM aaM aaM aaM -bbp -bch -bcZ -bdR -beJ -bfB -bgt -bhl -bid -biV -bjN -bkF -blx -bmp -bnh -boa -boT -bpM -bqF -bry -bsq -bti -bua -buS +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -82787,21 +76641,21 @@ abP acX acX abP -adQ +adP abP abB -aeQ -aeW -aft -aeW -aeW -aeW -aeW -aWN -aeW -afW -aeW -agZ +aeP +aeV +afs +aeV +aeV +aeV +aeV +aVf +aeV +afT +aeV +agW aaM aaM aaM @@ -82814,35 +76668,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aiB -aiL +ait +aiD aaM aaM -aiB -aiE -ajj +ait +aiw +ajb aaM -aid -aid -aid -aiY +ahV +ahV +ahV +aiQ aaM aaM aaM aaM aaM -aid +ahV aaM -aid -aid +ahV +ahV aaM -ahU +ahM aaM aaM aaM @@ -82852,7 +76706,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -82864,16 +76718,16 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -82891,17 +76745,17 @@ aaM aaM aaM aaM -aXs -amf -aoP -aoU -apc -amf -amf -amf -amf -amf -aXx +aVt +alH +aoq +aov +aoD +alH +alH +alH +alH +alH +aVw aaM aaM aaM @@ -82922,7 +76776,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83008,30 +76862,30 @@ aaM aaM aaM aaM -bbq -bci -bda -bdS -beK -bfC -bgu -bhm -bie -biW -bjO -bkG -bly -bmq -bni -bob -boU -bpN -bqG -brz -bsr -btj -bub -buT +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -83047,7 +76901,7 @@ aaN aaN aaN aaN -aeQ +aeP aaN aaN aaN @@ -83058,7 +76912,7 @@ aaN aaN aaN aaN -agZ +agW aaM aaM aaM @@ -83071,7 +76925,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83082,11 +76936,11 @@ aaM aaM aaM aaM -ajl -aiB +ajd +ait aaM aaM -aiY +aiQ aaM aaM aaM @@ -83095,11 +76949,11 @@ aaM aaM aaM aaM -aid -aid -aid -aid -ahU +ahV +ahV +ahV +ahV +ahM aaM aaM aaM @@ -83109,7 +76963,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83120,17 +76974,17 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -83141,24 +76995,24 @@ aaM aaM aaM aaM -aXq -amf -anR -amf -amf -amf -amf -amf -aoE -aoF -aoV -aoF -aph -apo -apy -apL -apO -apY +aVt +alH +ans +alH +alH +alH +alH +alH +aof +aog +aow +aog +aoI +aoP +aoZ +apm +app +apz aaM aaM aaM @@ -83179,7 +77033,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83265,30 +77119,30 @@ aaM aaM aaM aaM -bbr -bcj -bdb -bdT -beL -bfD -bgv -bhn -bif -biX -bjP -bkH -blz -bmr -bnj -boc -boV -bpO -bqH -brA -bss -btk -buc -buU +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -83304,18 +77158,18 @@ acY acY acY acY -aeQ -aeX -aeX -afG -afP -afP -afP -afP -afP -afP -afP -agZ +aeP +aeW +aeW +afF +afM +afM +afM +afM +afM +afM +afM +agW aaM aaM aaM @@ -83328,35 +77182,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM aaM -aiX +aiP aaM -aje +aiW aaM aaM -aiB -ajl -akn +ait +ajd +ajW aaM aaM aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM -ahU +ahM aaM aaM aaM @@ -83366,7 +77220,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83376,17 +77230,17 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -83398,24 +77252,24 @@ aaM aaM aaM aaM -amf -anE -anS -amf -aoo -aov -aoA -amf -aoF -aoF -aoW -aoF -aoF +alH +anf +ant +alH +anP +anW +aob +alH +aog +aog +aox +aog +aog +aoQ +aog +apn app -aoF -apM -apO -apZ +apA aaM aaM aaM @@ -83436,7 +77290,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83522,30 +77376,30 @@ aaM aaM aaM aaM -bbs -bck -bdc -bdU -beM -bfE -bgw -bho -big -biY -bjQ -bkI -blA -bms -bnk -bod -boW -bpP -bqI -brB -bst -btl -bud -buV +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -83556,23 +77410,23 @@ abD abD acw acZ -adr -adr -adr -aeh +adq +adq +adq +aeg acY -aeQ -aeX -afu -afH -afQ -afX -agm -agm -agm -agN -afP -agZ +aeP +aeW +aft +afG +afN +afU +agj +agj +agj +agK +afM +agW aaM aaM aaM @@ -83585,20 +77439,20 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM aaM -aiY -aiB +aiQ +ait aaM aaM aaM @@ -83613,7 +77467,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83623,7 +77477,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83632,17 +77486,17 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -83655,24 +77509,24 @@ aaM aaM aaM aaM -amf -anF -anT -aoc -amq -amq -amq -amf -aoG -aoF -aoF -aoF -aoF -apq -apz -apN -apO -aqa +alH +ang +anu +anD +alS +alS +alS +alH +aoh +aog +aog +aog +aog +aoR +apa +apo +app +apB aaM aaM aaM @@ -83693,7 +77547,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83779,30 +77633,30 @@ aaM aaM aaM aaM -bbt -bcl -bdd -bdV -beN -bfF -bgx -bhp -bih -biZ -bjR -bkJ -blB -bmt -bnl -boe -boX -bpQ -bqJ -brC -bsu -btm -bue -buW +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -83813,23 +77667,23 @@ abD abD acv ada -ads -ads -ads -aei +adr +adr +adr +aeh acY -aeQ -aeX -afv -afH -afQ -afY -agn -agn -agn -agO -afP -agZ +aeP +aeW +afu +afG +afN +afV +agk +agk +agk +agL +afM +agW aaM aaM aaM @@ -83842,21 +77696,21 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM aaM aaM -aiB -ajw -aiB +ait +ajn +ait aaM aaM aaM @@ -83870,7 +77724,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83880,7 +77734,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -83888,48 +77742,48 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM -aXl -amf -amf -amf -amQ +aVt +alH +alH +alH +ams aaM aaM -aXo -amf -anG -anS -aod -amq -amq -amq -amf -aoH -aoF -aoF -aoF -aoF -apr -amf -amf -amf -aXy +aVt +alH +anh +ant +anE +alS +alS +alS +alH +aoi +aog +aog +aog +aog +aoS +alH +alH +alH +aVv aaM aaM aaM @@ -83950,7 +77804,7 @@ aaM aaM aaM aaM -asG +ase aaM aaM aaM @@ -84036,30 +77890,30 @@ aaM aaM aaM aaM -bbu -bcm -bde -bdW -beO -bfG -bgy -bhq -bii -bja -bjS -bkK -blC -bmu -bnm -bof -boY -bpR -bqK -brD -bsv -btn -buf -buX +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -84070,23 +77924,23 @@ abD abD acv ada -ads -ads -ads -aei +adr +adr +adr +aeh acY -aeQ -aeX -afv -afH -afQ -afY -agn -agn -agn -agO -afP -agZ +aeP +aeW +afu +afG +afN +afV +agk +agk +agk +agL +afM +agW aaM aaM aaM @@ -84099,20 +77953,20 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid +ahV aaM aaM aaM aaM aaM -aiX +aiP aaM -aiB +ait aaM aaM aaM @@ -84127,7 +77981,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84137,7 +77991,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84145,45 +77999,45 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM -aXj -amf -amp -amA -amK -amf -amf -amf -amf -amf -amf -amf -amf -aop -amq -amq -amf -aoI -aoF -aoF -aoF -api -aps -amf +aVt +alH +alR +amc +amm +alH +alH +alH +alH +alH +alH +alH +alH +anQ +alS +alS +alH +aoj +aog +aog +aog +aoJ +aoT +alH aaM aaM aaM @@ -84207,7 +78061,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84293,30 +78147,30 @@ aaM aaM aaM aaM -bbv -bcn -bdf -bdX -beP -bfH -bgz -bhr -bij -bjb -bjT -bkL -blD -bmv -bnn -bog -boZ -bpS -bqL -brE -bsw -bto -bug -buY +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP +aWP aaM aaM "} @@ -84327,23 +78181,23 @@ abD abD acv ada -ads -ads -ads -aei +adr +adr +adr +aeh acY -aeQ -aeX -afv -afH -afQ -afY -agn -agn -agn -agO -afP -agZ +aeP +aeW +afu +afG +afN +afV +agk +agk +agk +agL +afM +agW aaM aaM aaM @@ -84356,13 +78210,13 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aiC +aiu aaM aaM aaM @@ -84384,7 +78238,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84394,7 +78248,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84405,11 +78259,11 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -84417,32 +78271,57 @@ aaM aaM aaM aaM +alv +alI alS -amg -amq -amq -amq -amR -anb -ank -anr -anw -amq -amf -amf -amf -aow -aoB -amf -amf -amf -aoX -apd -amf -amf -amf -amf -aXu +alS +alS +amt +amC +amL +amS +amX +alS +alH +alH +alH +anX +aoc +alH +alH +alH +aoy +aoE +alH +alH +alH +alH +aVw +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +aaM +ahM +aaM +aaM +aaM aaM aaM aaM @@ -84464,7 +78343,6 @@ aaM aaM aaM aaM -ahU aaM aaM aaM @@ -84550,30 +78428,6 @@ aaM aaM aaM aaM -bbw -bco -bdg -bdY -beQ -bfI -bgA -bhs -bik -bjc -bjU -bkM -blE -bmw -bno -boh -bpa -bpT -bqM -brF -bsx -btp -buh -buZ aaM aaM "} @@ -84584,23 +78438,23 @@ abD abD acw adb -adt -adt -adt -aej +ads +ads +ads +aei acY -aeQ -aeX -afw -afH -afQ -afZ -ago -ago -ago -agP -afP -agZ +aeP +aeW +afv +afG +afN +afW +agl +agl +agl +agM +afM +agW aaM aaM aaM @@ -84613,27 +78467,27 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM aaM -aiM -aiX +aiE +aiP aaM aaM -aiB +ait aaM -aiB +ait aaM aaM aaM aaM aaM aaM -aid +ahV aaM aaM aaM @@ -84641,7 +78495,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84651,7 +78505,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84674,32 +78528,32 @@ aaM aaM aaM aaM -alT -amh -amq -amq -amq -amf -anc -anl -anc -anc +alw +alJ +alS +alS +alS +alH +amD +amM +amD +amD +ani +alH +anF +alS +alS +alS +alS +aok +alS +alS +alS anH -amf -aoe -amq -amq -amq -amq -aoJ -amq -amq -amq -aog -apt -amq -apO -apY +aoU +alS +app +apz aaM aaM aaM @@ -84721,7 +78575,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84846,18 +78700,18 @@ acY acY acY acY -aeQ -aeX -aeX -afG -afP -afP -afP -afP -afP -afP -afP -agZ +aeP +aeW +aeW +afF +afM +afM +afM +afM +afM +afM +afM +agW aaM aaM aaM @@ -84870,35 +78724,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM -aid +ahV aaM aaM -aiD -aiN +aiv +aiF aaM -aiY +aiQ aaM -ajm -aiB +aje +ait aaM -aiX -aid +aiP +ahV aaM aaM -aiY -aiX -aid -aid -aid -aid +aiQ +aiP +ahV +ahV +ahV +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84908,7 +78762,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -84931,32 +78785,32 @@ aaM aaM aaM aaM +alw +alK alT -ami -amr -amq -amL -amf -and -amB -amB -amB -amq -anU -amq -amq -amq -amq -amq -amq -amq -amq -amq -apj -amq +alS +amn +alH +amE +amd +amd +amd +alS +anv +alS +alS +alS +alS +alS +alS +alS +alS +alS +aoK +alS +apb +app apA -apO -apZ aaM aaM aaM @@ -84978,7 +78832,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85103,7 +78957,7 @@ aaN aaN aaN aaN -aeQ +aeP aaN aaN aaN @@ -85114,7 +78968,7 @@ aaN aaN aaN aaN -agZ +agW aaM aaM aaM @@ -85127,35 +78981,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aiE +aiw aaM -aiN +aiF aaM aaM -aiE -ajj +aiw +ajb aaM aaM -aiY +aiQ aaM -ako -ako -ako -ako -ajv -aXb -aid +ajX +ajX +ajX +ajX +ajm +aVh +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85165,7 +79019,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85188,32 +79042,32 @@ aaM aaM aaM aaM -alT -amj -amq -amq -amq -amf -ane -amq -amq -amq -anI -amf -aof -amq -amq -amq -amq -aoK -amq -amq -amq -aog -apu +alw +alL +alS +alS +alS +alH +amF +alS +alS +alS +anj +alH +anG +alS +alS +alS +alS +aol +alS +alS +alS +anH +aoV +apc +app apB -apO -aqa aaM aaM aaM @@ -85235,7 +79089,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85355,23 +79209,23 @@ abF abF acx adc -adu -adF -adR -adF -aeE -aeP -aeY -afx -afx -afx -aga -agp -agA -agA -agA -agR -agZ +adt +adE +adQ +adE +aeD +aeO +aeX +afw +afw +afw +afX +agm +agx +agx +agx +agO +agW aaM aaM aaM @@ -85384,35 +79238,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aiF -aiO -aiZ +aix +aiG +aiR aaM aaM aaM -aid +ahV aaM aaM -aiX +aiP aaM -ako -ako -ako -ako -akX -ajL +ajX +ajX +ajX +ajX +akG +ajB aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85422,7 +79276,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85445,32 +79299,32 @@ aaM aaM aaM aaM -alU -amk -amq -amB -amq -amf -anf -anm -ans -anx -amf -amf -amf -amf -aox -aoC -amf -amf -amf -aoY -ape -amf -amf -amf -amf -aXv +alx +alM +alS +amd +alS +alH +amG +amN +amT +amY +alH +alH +alH +alH +anY +aod +alH +alH +alH +aoz +aoF +alH +alH +alH +alH +aVv aaM aaM aaM @@ -85492,7 +79346,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85612,23 +79466,23 @@ abF abE acy add +adu +adF adv -adG -adw -adG -aeF -aeP -aeZ -afy -afy -afy -agb -agq -afy -afy -afy -agK -agZ +adF +aeE +aeO +aeY +afx +afx +afx +afY +agn +afx +afx +afx +agH +agW aaM aaM aaM @@ -85641,15 +79495,15 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aiG -aiP -aja +aiy +aiH +aiS aaM aaM aaM @@ -85658,18 +79512,18 @@ aaM aaM aaM aaM -ako -ako -ako -ako -ajv -aXc +ajX +ajX +ajX +ajX +ajm +aVi aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85679,7 +79533,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85702,30 +79556,30 @@ aaM aaM aaM aaM -aXk -amf -amj -amC -amM -amf -amf -amf -amf -amf -amf -anV -amf -aoq -amq -amq -amf +aVu +alH +alL +ame +amo +alH +alH +alH +alH +alH +alH +anw +alH +anR +alS +alS +alH +aom +aor +alS +alS aoL -aoQ -amq -amq -apk -apv -amf +aoW +alH aaM aaM aaM @@ -85749,7 +79603,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85869,23 +79723,23 @@ abF ach acz add -adw -adw -adw -adw -aeG -aeP +adv +adv +adv +adv +aeF +aeO +aeX +afw aeY afx -aeZ -afy -agb -agq -afy -agK -agA -agR -agZ +afY +agn +afx +agH +agx +agO +agW aaM aaM aaM @@ -85898,7 +79752,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85908,25 +79762,25 @@ aaM aaM aaM aaM -ajg -ajg -ajg -ajg -ajv -aWQ +aiY +aiY +aiY +aiY +ajm +aVh aaM aaM aaM aaM aaM -aje +aiW aaM aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85936,7 +79790,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -85960,32 +79814,32 @@ aaM aaM aaM aaM -aXm -amf -amf -amf -aXn +aVu +alH +alH +alH +aVv aaM aaM -aXp -amf -anJ -anJ -aog -aor -amq -amq -amf +aVu +alH +ank +ank +anH +anS +alS +alS +alH +aon +alS +alS +alS aoM -amq -amq -amq -apl -amf -amf -amf -amf -aXz +alH +alH +alH +alH +aVw aaM aaM aaM @@ -86006,7 +79860,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86126,23 +79980,23 @@ abF abE acA add +adu +adF adv -adG -adw -adw -aeH -aeP -afa -afy +adv +aeG +aeO aeZ -afy -agc -agq -afy -agK -afy -agS -agZ +afx +aeY +afx +afZ +agn +afx +agH +afx +agP +agW aaM aaM aaM @@ -86155,7 +80009,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86165,16 +80019,16 @@ aaM aaM aaM aaM -ajg -ajg -ajg -ajg -ajE -ajL +aiY +aiY +aiY +aiY +aju +ajB aaM -ajj -akp -aiE +ajb +ajY +aiw aaM aaM aaM @@ -86183,7 +80037,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86193,7 +80047,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86204,11 +80058,11 @@ aaM aaM aaM aaM -alz -alz -alz -alA -alB +ald +ald +ald +ale +alf aaM aaM aaM @@ -86225,24 +80079,24 @@ aaM aaM aaM aaM -amf -anK -anW -aoh -aos -amq -amq -amf -aoM -amq -amq -amq -apm -amf -apC -amj -apO -apY +alH +anl +anx +anI +anT +alS +alS +alH +aon +alS +alS +alS +aoN +alH +apd +alL +app +apz aaM aaM aaM @@ -86263,7 +80117,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86383,23 +80237,23 @@ abF abF acB ade -adx -adH -adS -adS -aeI -aeP -afb -afz -aeZ +adw +adG +adR +adR +aeH +aeO +afa afy -agb -agq -afy -agK -agB -agT -agZ +aeY +afx +afY +agn +afx +agH +agy +agQ +agW aaM aaM aaM @@ -86412,7 +80266,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86422,16 +80276,16 @@ aaM aaM aaM aaM -ajg -ajg -ajg -ajg -ajv -aWR +aiY +aiY +aiY +aiY +ajm +aVi aaM -aiE -akq -aiE +aiw +ajZ +aiw aaM aaM aaM @@ -86440,7 +80294,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86450,21 +80304,21 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM -aiB +ait aaM -aiB +ait aaM aaM aaM @@ -86472,34 +80326,34 @@ aaM aaM aaM aaM -alN -alW -alW -alW -alW -alW -amT +alr +aly +aly +aly +aly +aly +amu aaM aaM aaM -amf -anL -anX -aog -aot -aoy -aoD -amf -aoN -amq -aoZ -amq -amq -apw -amq -apP -apO -apZ +alH +anm +any +anH +anU +anZ +aoe +alH +aoo +alS +aoA +alS +alS +aoX +alS +apq +app +apA aaM aaM aaM @@ -86520,7 +80374,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86643,20 +80497,20 @@ adf adf adf adf -aek -aeJ -aeP -aeZ -afy -afy -afy -agb -agq -afy -afy -afy -agK -agZ +aej +aeI +aeO +aeY +afx +afx +afx +afY +agn +afx +afx +afx +agH +agW aaM aaM aaM @@ -86669,26 +80523,26 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid +ahV aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM -aiE -akr -aiE +aiw +aka +aiw aaM aaM aaM @@ -86697,7 +80551,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86707,56 +80561,56 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aiB -aid -aid -aid -aiB +ahV +ahV +ahV +ahV +ahV +ait +ahV +ahV +ahV +ait aaM aaM aaM aaM aaM aaM -alO -alX -alX -ams -alX -alX -alO +als +alz +alz +alU +alz +alz +als aaM aaM -alB -aXr -anM -anM -amf -amf -amf -amf -amf +alf +aVu +ann +ann +alH +alH +alH +alH +alH +aop +aos +aoB +aoG aoO -aoR -apa -apf -apn -amf -apD -apQ -apO -aqa +alH +ape +apr +app +apB aaM aaM aaM @@ -86777,7 +80631,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86900,20 +80754,20 @@ adg adg adg adg -ael +aek abE -aeP -afb -afz -afz -afz -agd -agr -agB -agB -agB -agT -agZ +aeO +afa +afy +afy +afy +aga +ago +agy +agy +agy +agQ +agW aaM aaM aaM @@ -86926,7 +80780,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86936,16 +80790,16 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM aaM aaM -ajX -aks -akB +ajL +akb +akk aaM aaM aaM @@ -86954,7 +80808,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -86964,56 +80818,56 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM aaM -alO -alY -aml -amt -amD -alX -alO -aaM -aaM +als alA -any -anN -anN -aoi -aiB -alA -aaM -aXt +alN +alV amf -aoS -apb -apg -amf -amf -amf -amf -amf -aXA +alz +als +aaM +aaM +ale +amZ +ano +ano +anJ +ait +ale +aaM +aVu +alH +aot +aoC +aoH +alH +alH +alH +alH +alH +aVv aaM aaM aaM @@ -87034,7 +80888,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87159,7 +81013,7 @@ aaN aaN aaN aaN -aeP +aeO aaN aaN aaN @@ -87170,7 +81024,7 @@ aaN aaN aaN aaN -agZ +agW aaM aaM aaM @@ -87183,7 +81037,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87193,25 +81047,25 @@ aaM aaM aaM aaM -aid +ahV aaM aaM aaM aaM aaM aaM -ajv -akt -ajv +ajm +akc +ajm aaM -aid -aid +ahV +ahV aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87221,44 +81075,44 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -alF -alJ -alK -ajU +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +alj +aln +alo +ajI aaM -alP -alZ -aml -amu -amD -alX -amU +alt +alB +alN +alW +amf +alz +amv aaM aaM -alA -any -amy -amy -aoi +ale +amZ +ama +ama +anJ aaM -alA +ale aaM aaM aaM @@ -87291,7 +81145,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87416,18 +81270,18 @@ abH abH abH abH -aeP -afc -afA -aff +aeO +afb +afz afe afd -ags -agC -agD -agD -agD -agZ +afc +agp +agz +agA +agA +agA +agW aaM aaM aaM @@ -87440,7 +81294,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87457,18 +81311,18 @@ aaM aaM aaM aaM -aWW -ajL -aWY -aid -aid -aid -aid +aVn +ajB +aVi +ahV +ahV +ahV +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87478,7 +81332,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87486,36 +81340,36 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -ajU -ajU -alG -alG -alG -ajU -ajU -ajU +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ajI +alk +alk +alk +ajI +ajI +ajI +alz +alz alX -alX -amv -alX -alX -ajU -ang -ann -ajU -ajU -anN -anN -ajU -aiB -alA +alz +alz +ajI +amH +amO +ajI +ajI +ano +ano +ajI +ait +ale aaM aaM aaM @@ -87541,14 +81395,14 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87571,39 +81425,39 @@ aaM aaM aaM aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP aaM aaM @@ -87632,18 +81486,18 @@ aaV aaR aaY aaU -adA -afM +adz +afL adh acH -adB -aeR -afo +adA +aeQ +afn acG -aha +agX acF -ahd -ahk +aha +ahh aaY aaU abd @@ -87673,18 +81527,18 @@ abH abH abQ abH -aeP +aeO +afc +afA afd -afB afe -aff -afe -agt -agD -agD -agD -agD -agZ +afd +agq +agA +agA +agA +agA +agW aaM aaM aaM @@ -87697,7 +81551,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87714,18 +81568,18 @@ aaM aaM aaM aaM -aid +ahV aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87735,7 +81589,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87743,36 +81597,36 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -ajU -alC -alH -alH -alH -alI -alM -ajU -alX -alX -alX -alX -alX -amV -amV -amV -amV -anz -amV -amV -aoj +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +alg +all +all +all +alm +alq +ajI +alz +alz +alz +alz +alz +amw +amw +amw +amw +ana +amw +amw +anK aaM -alA +ale aaM aaM aaM @@ -87795,17 +81649,17 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87828,39 +81682,39 @@ aaM aaM aaM aaP -aid -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aFE -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aid +ahV +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aEE +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +ahV aaP aaM aaM @@ -87883,26 +81737,26 @@ aba aaX aaZ acH -adB -ahd -ahk -aho -afn -adA -afM -aSI -aSI -aTt -aTz -aTz -aTz -aTz -aSh -aSI -aSI -aho -afn adA +aha +ahh +ahl +afm +adz +afL +aRd +aRd +aRO +aRT +aRT +aRT +aRT +aQC +aRd +aRd +ahl +afm +adz aaV aaR aaY @@ -87930,18 +81784,18 @@ abH abH abH abH -aeP +aeO +afd afe -aff -afc -afA -afc -agt -agD -agD -agD -agD -agZ +afb +afz +afb +agq +agA +agA +agA +agA +agW aaM aaM aaM @@ -87954,12 +81808,12 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM @@ -87970,19 +81824,19 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -87992,7 +81846,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88001,33 +81855,33 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -ajU -alD -alI -alI -alI -alI -alI -alQ -alX -alX -alX -alX -alX -amV -amV -amV -amV -amV -amV -amV -alO +ahV +ahV +ahV +ahV +ahV +ahV +ajI +alh +alm +alm +alm +alm +alm +alu +alz +alz +alz +alz +alz +amw +amw +amw +amw +amw +amw +amw +als aaM aaM aaM @@ -88051,18 +81905,18 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88085,39 +81939,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCz -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBV +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -88135,32 +81989,32 @@ aaX aaj aaZ abc -adB -aeR -afo +adA +aeQ +afn acG -aha -aSI -aTt -aTz -aTz -aTz -aTz -aSh -aSI -aUn -aTv -aTv -aTv -aTv -aTv -aTv -aUT -aSI -aSI -aSI -aha -afM +agX +aRd +aRO +aRT +aRT +aRT +aRT +aQC +aRd +aSH +aRQ +aRQ +aRQ +aRQ +aRQ +aRQ +aTn +aRd +aRd +aRd +agX +afL acE adh acH @@ -88187,18 +82041,18 @@ abQ abH abH abH -aeP -aff +aeO afe -afe -afR afd -agu -agE -agD -agD -agD -agZ +afd +afO +afc +agr +agB +agA +agA +agA +agW aaM aaM aaM @@ -88211,24 +82065,24 @@ aaM aaM aaM aaM -ahU +ahM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM -aid +ahV aaM aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -88239,7 +82093,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88249,7 +82103,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88259,32 +82113,32 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -ajU -alE -alH -alH -alH -alL -alI -ajU -ama -alX -alX -amE -amN -amV -amV -amV -amV -amV -amV -amV -amU +ahV +ahV +ahV +ahV +ahV +ajI +ali +all +all +all +alp +alm +ajI +alC +alz +alz +amg +amp +amw +amw +amw +amw +amw +amw +amw +amv aaM aaM aaM @@ -88307,19 +82161,19 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88342,39 +82196,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -88393,33 +82247,33 @@ aak aba aaX adh -aRR -aSh +aQo +aQC +aRd +aRd +aRd +aRP +aRU +aSd +aSg +aSm +aSu +aRd aSI -aSI -aSI -aTu -aTA -aTJ -aTM -aTS -aUa -aSI -aUo -aTv -aTv -aTv -aTv -aTv -aTv -aUU -aVe -aVo -aRR -aTz -aTz -aTz -aVP +aRQ +aRQ +aRQ +aRQ +aRQ +aRQ +aTo +aTy +aTI +aQo +aRT +aRT +aRT +aUj acE aaZ abc @@ -88444,18 +82298,18 @@ abH abH abH abH -aeP -afe -aff -afe -afc +aeO +afd afe afd -agt -agD -agD -agD -agZ +afb +afd +afc +agq +agA +agA +agA +agW aaM aaM aaM @@ -88468,19 +82322,19 @@ aaM aaM aaM aaM -ahU +ahM aaM -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -88496,7 +82350,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88506,7 +82360,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88516,40 +82370,40 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -ajU -ajU -alG -alG -alG -ajU -ajU -ajU -ajU -amm -ajU -ajU -ajU -ajU -anh -ajU -ajU -amV -amV -amV -ajU +ahV +ahV +ahV +ahV +ahV +ajI +ajI +alk +alk +alk +ajI +ajI +ajI +ajI +alO +ajI +ajI +ajI +ajI +amI +ajI +ajI +amw +amw +amw +ajI aaM aaM aaM -alz -alz -alB -alz -alz +ald +ald +alf +ald +ald aaM aaM aaM @@ -88564,19 +82418,19 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88599,39 +82453,39 @@ aaM aaM aaM aaP -aid -aBL -aCb +ahV +aBh +aBx +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCE -aDl -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +aCH +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -88650,34 +82504,34 @@ aal abb abe acG -aRS -aSi -aSJ -aSY -aSI -aTv -aTv -aTv -aTv -aTT -aTv -aSI -aTv -aTv -aUt -aUA -aUA -aUG -aTv -aUV -aVf -aVp -aVv -aVA -aVA -aVA -aRS -afo +aQp +aQD +aRe +aRt +aRd +aRQ +aRQ +aRQ +aRQ +aSn +aRQ +aRd +aRQ +aRQ +aSN +aSU +aSU +aTa +aRQ +aTp +aTz +aTJ +aTP +aTU +aTU +aTU +aQp +afn aaQ aaT aag @@ -88701,18 +82555,18 @@ abH abH abH abH -aeP -afc -afe -afI -afe +aeO +afb afd -ags -agC -agD -agD -agD -agZ +afH +afd +afc +agp +agz +agA +agA +agA +agW aaM aaM aaM @@ -88725,22 +82579,22 @@ aaM aaM aaM aaM -ahU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahM +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -88753,7 +82607,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88763,7 +82617,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88773,39 +82627,39 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -ajU -ajU -ajU -ajU -ajU -aid -ajU -amb -amn -amn -amF -ajU -amW -ani -ano -ajU -ajU -anO -ajU -ajU -aid +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ajI +ajI +ajI +ajI +ahV +ajI +alD +alP +alP +amh +ajI +amx +amJ +amP +ajI +ajI +anp +ajI +ajI +ahV aaM aaM aaM -aiB +ait aaM -aiB +ait aaM aaM aaM @@ -88822,18 +82676,18 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -88856,39 +82710,39 @@ aaM aaM aaM aaP -aid -aBL +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCE -aCa -aFe -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +aBw +aEi +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -88906,35 +82760,35 @@ aaZ aam abc aaS -aeR -aRS -aSj -aSK -aSZ -aTh -aTv -aTv -aTv -aTv -aTv -aTv -aTh -aTv -aTv -aUu -aUB -aUE -aUH -aTv -aUW -aVe -aVq -aVv -aVA -aVG -aVA -aRS -adB +aeQ +aQp +aQE +aRf +aRu +aRC +aRQ +aRQ +aRQ +aRQ +aRQ +aRQ +aRC +aRQ +aRQ +aSO +aSV +aSY +aTb +aRQ +aTq +aTy +aTK +aTP +aTU +aUa +aTU +aQp +adA abb abe aae @@ -88958,18 +82812,18 @@ abQ abH abH abH -aeP -afd -afA -afJ -aff -age -agt -agD -agD -agD -agD -agZ +aeO +afc +afz +afI +afe +agb +agq +agA +agA +agA +agA +agW aaM aaM aaM @@ -88982,24 +82836,24 @@ aaM aaM aaM aaM -ahU -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahM +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -89010,7 +82864,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89020,7 +82874,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89029,47 +82883,47 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -amc -amn -amn -amn -ajU -amW -ani -ani -ajU -anA -amy -anY -ajU -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +alE +alP +alP +alP +ajI +amx +amJ +amJ +ajI +anb +ama +anz +ajI +ahV +ahV aaM -aiB -aid -aid -aiB +ait +ahV +ahV +ait aaM aaM -alz -alz -alz -alz -alz +ald +ald +ald +ald +ald aaM aaM aaM @@ -89081,16 +82935,16 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89113,39 +82967,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCa -aCa -aCa -aDl -aCa -aDw -aDw -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBw +aBw +aBw +aCH +aBw +aCS +aCS +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -89164,34 +83018,34 @@ aan abd aba acE -aRS -aSk -aSL -aTa -aSI -aTv -aTv -aTv -aTv -aTv -aTv -aSI -aTv -aTv -aUv -aUC -aUC -aUI -aTv -aUX -aVg -aVp -aVv -aVA -aVA -aVA -aRS -afM +aQp +aQF +aRg +aRv +aRd +aRQ +aRQ +aRQ +aRQ +aRQ +aRQ +aRd +aRQ +aRQ +aSP +aSW +aSW +aTc +aRQ +aTr +aTA +aTJ +aTP +aTU +aTU +aTU +aQp +afL aaX aaZ aad @@ -89215,7 +83069,7 @@ aaN aaN aaN aaN -aeP +aeO aaN aaN aaN @@ -89226,7 +83080,7 @@ aaN aaN aaN aaN -agZ +agW aaM aaM aaM @@ -89239,25 +83093,25 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -89267,7 +83121,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89277,7 +83131,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89286,46 +83140,46 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -amd -amn -amn -amG -ajU -amW -ani -ani -ajU -anB -amy -anZ -ajU -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +alF +alP +alP +ami +ajI +amx +amJ +amJ +ajI +anc +ama +anA +ajI +ahV +ahV aaM aaM aaM aaM aaM -aiB +ait aaM aaM -aiB +ait aaM -aiB +ait aaM aaM aaM @@ -89339,15 +83193,15 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89370,39 +83224,39 @@ aaM aaM aaM aaP -aid -aBL +ahV +aBh +aBw +aBw +aBw +aBw aCa -aCa -aCa -aCa -aCE -aDw -aDP -aEc -aDw -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +aCS +aDj +aDt +aCS +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -89420,34 +83274,34 @@ abb aao abe aaQ -aha -aRT +agX +aQq +aQC +aRd +aRd +aRd +aRR +aRV +aSe aSh -aSI -aSI -aSI -aTw +aSo +aSv +aRd +aSJ +aRQ +aRQ +aRQ +aRQ +aRQ +aRQ +aTo aTB -aTK -aTN -aTU -aUb -aSI -aUp -aTv -aTv -aTv -aTv -aTv -aTv -aUU -aVh -aVr +aTL +aQq aRT -aTz -aTz -aTz -aVQ +aRT +aRT +aUk acG aaT aaW @@ -89472,18 +83326,18 @@ abI abI abI abI -aeP -afg -afC -afC -afC -agf -agv -agF -agF -agF -agU -agZ +aeO +aff +afB +afB +afB +agc +ags +agC +agC +agC +agR +agW aaM aaM aaM @@ -89496,27 +83350,27 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -89524,7 +83378,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89534,7 +83388,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89543,47 +83397,47 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -ame -amo -amw -amH -ajU -amX -anj -ajU -ajU -anC +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +alG +alQ +alY +amj +ajI amy -aoa -ajU -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aiB -aiB -aiB -aiB -aiB +amK +ajI +ajI +and +ama +anB +ajI +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ait +ait +ait +ait +ait aaM aaM aaM @@ -89597,14 +83451,14 @@ aaM aaM aaM aaM -aid -aid -aid +ahV +ahV +ahV aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89627,39 +83481,39 @@ aaM aaM aaM aaP -aid -aBL -aCc -aCa -aCa -aCa -aCa -aDw -aDQ -aEd -aDw -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBy +aBw +aBw +aBw +aBw +aCS +aDk +aDu +aCS +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -89677,35 +83531,35 @@ aaW aag aaV aaR -aho -afn -adA -afM +ahl +afm +adz +afL acE -aSI -aTt -aTz -aTz -aTz -aTz -aSh -aSI -aUq -aTv -aTv -aTv -aTv -aTv -aTv -aUY -aSI -aSI -aSI +aRd +aRO +aRT +aRT +aRT +aRT +aQC +aRd +aSK +aRQ +aRQ +aRQ +aRQ +aRQ +aRQ +aTs +aRd +aRd +aRd +acF +agX acF aha -acF -ahd -ahk +ahh aaY aaU aak @@ -89729,18 +83583,18 @@ abI abI abI abI -aeP -afh -afD -afD -afD -agg -agw -afD -afD -afD -agV -agZ +aeO +afg +afC +afC +afC +agd +agt +afC +afC +afC +agS +agW aaM aaM aaM @@ -89753,35 +83607,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM -aid +ahV aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89791,7 +83645,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89799,47 +83653,47 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -ajU -ajU -ajU -ajU -ajU -amY -anj -ajU -ant -amy -amy -amy -aok -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ajI +ajI +ajI +ajI +ajI +amz +amK +ajI +amU +ama +ama +ama +anL +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM -aiB +ait aaM aaM aaM @@ -89861,7 +83715,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -89884,39 +83738,39 @@ aaM aaM aaM aaP -aid -aBL -aCc -aCa -aCa -aCa -aCa -aCa -aDw -aDw -aCa -aCa -aCa -aEV -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBy +aBw +aBw +aBw +aBw +aBw +aCS +aCS +aBw +aBw +aBw +aEc +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -89938,24 +83792,24 @@ aba aaX aaZ abc -adB -aeR adA -afM +aeQ +adz +afL acE adh acH -adB -aSI -aSI -aTt -aTz -aTz -aTz -aTz -aSh -aSI -aSI +adA +aRd +aRd +aRO +aRT +aRT +aRT +aRT +aQC +aRd +aRd acE adh acH @@ -89986,18 +83840,18 @@ abI abI abI abI -aeP -afi -afD -afD -afD -agg -agw -afD -afD -afD +aeO +afh +afC +afC +afC +agd +agt +afC +afC +afC +agT agW -agZ aaM aaM aaM @@ -90010,35 +83864,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90048,7 +83902,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90056,48 +83910,48 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -ajU -ajU -ajU -ajU -ajU -ajU -ant -amy -amy -amy -aol -ajU -ajU -ajU -ajU -ajU -ajU -aid -aid -aid -aid -aid -aid -aiB -aiB +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ajI +ajI +ajI +ajI +ajI +ajI +amU +ama +ama +ama +anM +ajI +ajI +ajI +ajI +ajI +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ait +ait aaM aaM aaM @@ -90118,7 +83972,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90141,39 +83995,39 @@ aaM aaM aaM aaP -aid -aBL -aCc -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBy +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -90202,18 +84056,18 @@ aaR aaY aaU abd -afM +afL acE -aeR -adB -aeR -afo +aeQ +adA +aeQ +afn acG -aha +agX acF -ahd -ahk -aho +aha +ahh +ahl aaU abd aba @@ -90243,18 +84097,18 @@ abI abI abI abI -aeP -afh -afD -afD -afD -agg -agw -afD -afD -afD -agV -agZ +aeO +afg +afC +afC +afC +agd +agt +afC +afC +afC +agS +agW aaM aaM aaM @@ -90267,35 +84121,35 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90305,7 +84159,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90313,47 +84167,47 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -amx -amI -amO -amZ -amZ -anp -amy -amy -amy -amy -amy -anp -aoz -aoz -aoz -aoz -ajU -ajU -aid -aid -aid -aid -aid -aiB +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +alZ +amk +amq +amA +amA +amQ +ama +ama +ama +ama +ama +amQ +aoa +aoa +aoa +aoa +ajI +ajI +ahV +ahV +ahV +ahV +ahV +ait aaM aaM aaM @@ -90375,7 +84229,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90398,39 +84252,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aEV -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEc +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -90500,18 +84354,18 @@ abI abI abI abI -aeP -afi -afD -afD -afD -agg -agw -afD -afD -afD +aeO +afh +afC +afC +afC +agd +agt +afC +afC +afC +agT agW -agZ aaM aaM aaM @@ -90524,26 +84378,26 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -90552,7 +84406,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90562,7 +84416,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90571,46 +84425,46 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -amy -amy -amy -amy -amy +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ama +ama +ama +ama +ama +amR +ama +ama anq -amy -amy -anP -amy -amy +ama +ama +anV +ama +ama +ama +ama aou -amy -amy -amy -amy -aoT -ajU -aid -aid -aid -aid -aid -aid +ajI +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -90632,7 +84486,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90655,39 +84509,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aDl -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aCH +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -90757,18 +84611,18 @@ abI abI abI abI -aeP -afh -afD -afD -afD -agg -agw -afD -afD -afD -agV -agZ +aeO +afg +afC +afC +afC +agd +agt +afC +afC +afC +agS +agW aaM aaM aaM @@ -90781,7 +84635,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90789,17 +84643,17 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -90809,7 +84663,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90819,7 +84673,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90828,51 +84682,51 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -amz -amJ -amP -ana -ana -anp -amy -amy -amy -amy -amy -anp -aoz -aoz -aoz -aoz -ajU -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +amb +aml +amr +amB +amB +amQ +ama +ama +ama +ama +ama +amQ +aoa +aoa +aoa +aoa +ajI +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -90889,7 +84743,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -90912,39 +84766,39 @@ aaM aaM aaM aaP -aid -aBL -aCc -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aEV -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBy +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEc +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -91014,18 +84868,18 @@ abI abI abI abI -aeP -afj -afE -afE -afE -agh -agx -agG -agG -agG -agX -agZ +aeO +afi +afD +afD +afD +age +agu +agD +agD +agD +agU +agW aaM aaM aaM @@ -91038,7 +84892,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91048,14 +84902,14 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -91066,7 +84920,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91076,7 +84930,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91085,52 +84939,52 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -ajU -ajU -ajU -ajU -ajU -ajU -anu -amy -amy -amy -aom -ajU -ajU -ajU -ajU -ajU -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ajI +ajI +ajI +ajI +ajI +ajI +amV +ama +ama +ama +anN +ajI +ajI +ajI +ajI +ajI +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -91146,7 +85000,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91169,39 +85023,39 @@ aaM aaM aaM aaP -aid -aBL -aCc -aCa -aCa -aCa -aCa -aCa -aCa -aEe -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBy +aBw +aBw +aBw +aBw +aBw +aBw +aDv +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -91271,7 +85125,7 @@ aaN aaN aaN aaN -aeP +aeO aaN aaN aaN @@ -91282,7 +85136,7 @@ aaN aaN aaN aaN -agZ +agW aaM aaM aaM @@ -91295,7 +85149,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91307,10 +85161,10 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -91323,7 +85177,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91333,7 +85187,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91343,52 +85197,52 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -anu -amy -amy -amy -aom -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +amV +ama +ama +ama +anN +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -91403,7 +85257,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91426,39 +85280,39 @@ aaM aaM aaM aaP -aid -aBL -aCc +ahV +aBh +aBy +aBw aCa -aCE -aCz -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aEW -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +aBV +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEd +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -91523,23 +85377,23 @@ abR abR abR abR -ady -ady -ady -ady -aeK -aeP +adx +adx +adx +adx +aeJ +aeO +afj afk -afl -afK -afS -agi -agi -afU -agL -afl -agY -agZ +afJ +afP +agf +agf +afR +agI +afk +agV +agW aaM aaM aaM @@ -91552,7 +85406,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91564,10 +85418,10 @@ aaM aaM aaM aaM -aid -aid -aid -aid +ahV +ahV +ahV +ahV aaM aaM aaM @@ -91580,7 +85434,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91590,7 +85444,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91599,54 +85453,54 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -anv -amy -amy -amy -aon -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +amW +ama +ama +ama +anO +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -91660,7 +85514,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91683,39 +85537,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -91784,19 +85638,19 @@ abS abS abS abS -aeL -aeP +aeK +aeO +afj afk -afl -afL -afT -agj -agy -agH -agL -afl -agY -agZ +afK +afQ +agg +agv +agE +agI +afk +agV +agW aaM aaM aaM @@ -91809,7 +85663,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91822,8 +85676,8 @@ aaM aaM aaM aaM -aid -aid +ahV +ahV aaM aaM aaM @@ -91837,7 +85691,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91847,7 +85701,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91855,56 +85709,56 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -ajU -anD -anQ -aob -ajU -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ajI +ane +anr +anC +ajI +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -91917,7 +85771,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -91940,39 +85794,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -92041,19 +85895,19 @@ abS abS abS abS -aeL -aeP -afl -afl -afL -afT -agk -agz -agH -agL -afl -afl -agZ +aeK +aeO +afk +afk +afK +afQ +agh +agw +agE +agI +afk +afk +agW aaM aaM aaM @@ -92066,35 +85920,35 @@ aaM aaM aaM aaM -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM +ahM aaM aaM aaM @@ -92104,7 +85958,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -92112,57 +85966,57 @@ aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -ajU -ajU -ajU -ajU -ajU -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ajI +ajI +ajI +ajI +ajI +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -92174,7 +86028,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -92197,39 +86051,39 @@ aaM aaM aaM aaP -aid -aBL +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBV aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCz -aCE -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -92298,19 +86152,19 @@ abS abS abS abS -aeL -aeP -afl -afl -afL -afU -agl -agl -agI -agM -afl -afl -agZ +aeK +aeO +afk +afk +afK +afR +agi +agi +agF +agJ +afk +afk +agW aaM aaM aaM @@ -92361,67 +86215,67 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -92431,7 +86285,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -92454,39 +86308,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -92555,19 +86409,19 @@ abS abS abS abS -aeL -aeP -afl -afl -afl -afV -afV -afV -afV -afl -afl -afl -agZ +aeK +aeO +afk +afk +afk +afS +afS +afS +afS +afk +afk +afk +agW aaM aaM aaM @@ -92618,68 +86472,68 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -92688,7 +86542,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -92711,39 +86565,39 @@ aaM aaM aaM aaP -aid -aBL -aCa -aCA -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aFq -aFF -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFZ -aFY -aid +ahV +aBh +aBw +aBW +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aBw +aEs +aEF +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEY +aEX +ahV aaP aaM aaM @@ -92812,19 +86666,19 @@ abS abS abS abS -aeL -aeP -afm -afm -afm -afm -afm -afm -afm -afm -afm -afm -agZ +aeK +aeO +afl +afl +afl +afl +afl +afl +afl +afl +afl +afl +agW aaM aaM aaM @@ -92875,68 +86729,68 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -92945,7 +86799,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -92968,39 +86822,39 @@ aaM aaM aaM aaP -aid -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aBL -aFE -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aFY -aid +ahV +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aBh +aEE +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +aEX +ahV aaP aaM aaM @@ -93065,23 +86919,23 @@ abT abT abT abT -adz -adz -adz -adz -aeM -aeP -afm -afm -afm -afm -afm -afm -afm -afm -afm -afm -agZ +ady +ady +ady +ady +aeL +aeO +afl +afl +afl +afl +afl +afl +afl +afl +afl +afl +agW aaM aaM aaM @@ -93132,69 +86986,69 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM @@ -93202,7 +87056,7 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM @@ -93225,39 +87079,39 @@ aaM aaM aaM aaP -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaP aaM aaM @@ -93327,7 +87181,7 @@ aaN aaN aaN aaN -aeP +aeO aaN aaN aaN @@ -93338,7 +87192,7 @@ aaN aaN aaN aaN -agZ +agW aaM aaM aaM @@ -93389,77 +87243,77 @@ aaM aaM aaM aaM -ahU +ahM aaM aaM aaM aaM -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid -aid +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV +ahV aaM aaM aaM aaM aaM aaM -ahU +ahM aaM aaM aaM diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm index 9c3b376d4f6..63ea41aafd4 100644 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ b/maps/aurora/aurora-4_mainlevel.dmm @@ -5025,6 +5025,11 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, /turf/simulated/floor/tiled, /area/security/investigations) "ajV" = ( @@ -6486,6 +6491,10 @@ pixel_x = 0; pixel_y = 32 }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, /turf/simulated/floor/tiled, /area/security/brig) "amJ" = ( @@ -7760,6 +7769,11 @@ icon_state = "corner_white"; dir = 6 }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, /turf/simulated/floor/tiled, /area/security/brig) "aoU" = ( @@ -27796,11 +27810,10 @@ /turf/simulated/floor/tiled, /area/engineering/foyer) "aVv" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = newlist() - }, /obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, /turf/simulated/floor/tiled, /area/engineering/foyer) "aVw" = ( @@ -29611,8 +29624,7 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = newlist() + name = "Engineering Hallway" }, /turf/simulated/floor/tiled, /area/engineering/foyer) @@ -54823,7 +54835,7 @@ /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/asteroid/ash/rocky, +/turf/simulated/floor/tiled, /area/maintenance/medbay) "bON" = ( /obj/effect/decal/cleanable/dirt, @@ -54856,7 +54868,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/loot, -/turf/simulated/floor/asteroid/ash/rocky, +/turf/simulated/floor/tiled, /area/maintenance/medbay) "bOR" = ( /obj/machinery/access_button{ @@ -58673,6 +58685,11 @@ pixel_x = 4; pixel_y = 26 }, +/obj/machinery/button/windowtint{ + id = "finedining"; + pixel_x = -4; + pixel_y = 26 + }, /turf/simulated/floor/lino, /area/crew_quarters/bar) "bWz" = ( @@ -64167,6 +64184,49 @@ "cgE" = ( /turf/simulated/floor/asteroid/ash/rocky, /area/skipjack_station/cavern) +"cgF" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"cgG" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"cgH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) (1,1,1) = {" aaa @@ -98439,7 +98499,7 @@ aeF afe afC afC -afC +cgG afC ahx ail @@ -98958,7 +99018,7 @@ agT ahz agv aje -ajR +cgH ajR alI amH @@ -99723,7 +99783,7 @@ acl aeI afg afe -afC +cgF afD afC afe @@ -100309,7 +100369,7 @@ biL bJL bNv bNX -bON +bNX biL aab aaa @@ -100823,7 +100883,7 @@ biL bJL bNx bNZ -bOP +bNZ biL aaa aaa diff --git a/maps/aurora/aurora-6_surface.dmm b/maps/aurora/aurora-6_surface.dmm index 55edc1b8cd0..6cc60c41b7e 100644 --- a/maps/aurora/aurora-6_surface.dmm +++ b/maps/aurora/aurora-6_surface.dmm @@ -49776,7 +49776,7 @@ bU bU bU aw -aa +aw aa aa aa @@ -50033,7 +50033,7 @@ bU bU bU aw -aa +aw aa aa aa @@ -50290,7 +50290,7 @@ bU bU bU aw -aa +aw aa aa aa @@ -50803,7 +50803,7 @@ bU bU bU bU -aw +bU aw aw aa @@ -51061,7 +51061,7 @@ bU bU bU bU -bU +aw aw aa aa @@ -52089,7 +52089,7 @@ bU bU bU bU -aw +bU aw aa nx @@ -52346,7 +52346,7 @@ bU bU bU bU -aw +bU aw aa nx @@ -52860,7 +52860,7 @@ bU bU bU bU -aw +bU aw aa nx @@ -53117,7 +53117,7 @@ bU bU bU bU -aw +bU aw aa aa @@ -54145,7 +54145,7 @@ bU bU bU bU -bU +aw aw aa aa @@ -54658,7 +54658,7 @@ bU bU bU bU -bU +aw aw aa aa @@ -55173,7 +55173,7 @@ bU bU bU aw -aa +aw aa aa aa @@ -55430,7 +55430,7 @@ bU bU bU aw -aa +aw aa aa aa From aef060e166aa77702595de082fb1dba252b2c6e3 Mon Sep 17 00:00:00 2001 From: Erki Date: Sat, 10 Mar 2018 23:08:33 +0200 Subject: [PATCH 07/18] Fixes ticket access (#4374) --- code/modules/admin/ticket.dm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/code/modules/admin/ticket.dm b/code/modules/admin/ticket.dm index 03a68c8b458..3358ab958b2 100644 --- a/code/modules/admin/ticket.dm +++ b/code/modules/admin/ticket.dm @@ -106,10 +106,12 @@ proc/get_open_ticket_by_ckey(var/owner) var/list/dat = list() + var/valid_holder = check_rights(R_MOD|R_ADMIN, FALSE) + var/list/ticket_dat = list() for(var/id = tickets.len, id >= 1, id--) var/datum/ticket/ticket = tickets[id] - if(C.holder || ticket.owner == C.ckey) + if(valid_holder || ticket.owner == C.ckey) var/client/owner_client = client_by_ckey(ticket.owner) var/status = "Unknown status" var/color = "#6aa84f" @@ -128,11 +130,11 @@ proc/get_open_ticket_by_ckey(var/owner) ticket_dat += "Ticket #[id] - [ticket.owner] [owner_client ? "" : "(DC)"] - [status]
      VIEW" if(ticket.status) ticket_dat += " - PM" - if(C.holder) + if(valid_holder) ticket_dat += " - [(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]" - if(ticket.status != TICKET_CLOSED && (C.holder || ticket.status == TICKET_OPEN)) + if(ticket.status != TICKET_CLOSED && (valid_holder || ticket.status == TICKET_OPEN)) ticket_dat += " - CLOSE" - if(C.holder) + if(valid_holder) var/ref_mob = "" if(owner_client) ref_mob = "\ref[owner_client.mob]" @@ -188,7 +190,7 @@ proc/get_open_ticket_by_ckey(var/owner) if("close") ticket.close(usr.client) if("pm") - if(usr.client.holder && ticket.owner != usr.ckey) + if(check_rights(R_MOD|R_ADMIN) && ticket.owner != usr.ckey) usr.client.cmd_admin_pm(client_by_ckey(ticket.owner), ticket = ticket) else if(ticket.status == TICKET_ASSIGNED) // manually check that the target client exists here as to not spam the usr for each logged out admin on the ticket @@ -222,4 +224,4 @@ proc/get_open_ticket_by_ckey(var/owner) C.view_tickets() else ticket_panel.ticket_panel_window.set_content(ticket_panel.get_dat()) - ticket_panel.ticket_panel_window.update() \ No newline at end of file + ticket_panel.ticket_panel_window.update() From 53e2f21d6f5212c1c250f6cef9d6a15c474fbac5 Mon Sep 17 00:00:00 2001 From: Lohikar Date: Sat, 10 Mar 2018 15:50:08 -0600 Subject: [PATCH 08/18] Fix SM overenergization (#4376) Fixes a bug where emitters would apply way more energy to the SM than intended. --- code/modules/supermatter/supermatter.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/supermatter/supermatter.dm b/code/modules/supermatter/supermatter.dm index cd99441c26c..ffd43fdd1c2 100644 --- a/code/modules/supermatter/supermatter.dm +++ b/code/modules/supermatter/supermatter.dm @@ -364,6 +364,8 @@ return if(istype(AM, /obj/effect)) return + if(isprojectile(AM)) + return if(istype(AM, /mob/living)) AM.visible_message("\The [AM] slams into \the [src] inducing a resonance... \his body starts to glow and catch flame before flashing into ash.",\ "You slam into \the [src] as your ears are filled with unearthly ringing. Your last thought is \"Oh, fuck.\"",\ From 590abce9a936913316ada257aded2dcb6f9b07f9 Mon Sep 17 00:00:00 2001 From: Juani2400 Date: Sat, 10 Mar 2018 23:30:01 +0000 Subject: [PATCH 09/18] Map bugfixes (#4375) Fixes the floor at Medical's storage. Fixes the light at Medical's storage. Fixes the lighting issues at Security (dup with Alb's). Fixes Engineering doors' access. Removes the accidental shuttles in the centcomm level. Adds a RC in the CMO's office. --- maps/aurora/aurora-4_mainlevel.dmm | 34938 ++++++++++++------------ maps/aurora/aurora-5_interstitial.dmm | 1221 +- 2 files changed, 18081 insertions(+), 18078 deletions(-) diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm index 63ea41aafd4..1f44e3f0963 100644 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ b/maps/aurora/aurora-4_mainlevel.dmm @@ -3050,6 +3050,21 @@ }, /area/security/investigations) "afZ" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 1; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"aga" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -3067,7 +3082,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aga" = ( +"agb" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3085,7 +3100,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agb" = ( +"agc" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -3099,16 +3114,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agc" = ( +"agd" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agd" = ( +"age" = ( /obj/structure/table/standard, /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"age" = ( +"agf" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/cobweb2{ icon_state = "spiderling"; @@ -3116,34 +3131,34 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agf" = ( +"agg" = ( /obj/structure/table/standard, /obj/item/trash/tray, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agg" = ( +"agh" = ( /obj/structure/table/standard, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agh" = ( +"agi" = ( /obj/structure/table/standard, /obj/effect/decal/remains/mouse, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agi" = ( +"agj" = ( /obj/structure/table/standard, /turf/simulated/floor/plating, /area/maintenance/civ) -"agj" = ( +"agk" = ( /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agk" = ( +"agl" = ( /obj/structure/girder/displaced, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agl" = ( +"agm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/alarm{ @@ -3151,7 +3166,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agm" = ( +"agn" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3165,7 +3180,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agn" = ( +"ago" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -3176,13 +3191,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ago" = ( +"agp" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/item/device/taperecorder, /turf/simulated/floor/tiled, /area/security/brig) -"agp" = ( +"agq" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1449; @@ -3195,7 +3210,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"agq" = ( +"agr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -3209,34 +3224,49 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"agr" = ( +"ags" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"ags" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/security/brig) "agt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, +/obj/structure/girder, /turf/simulated/floor/plating, /area/security/brig) "agu" = ( /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) "agv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/security/brig) +"agw" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"agx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"agw" = ( +"agy" = ( /obj/machinery/camera/network/security{ c_tag = "Security - Evidence Storage Starboard"; dir = 8 @@ -3246,14 +3276,14 @@ temperature = 278 }, /area/security/investigations) -"agx" = ( +"agz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agy" = ( +"agA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -3265,7 +3295,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agz" = ( +"agB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -3273,47 +3303,47 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agA" = ( +"agC" = ( /obj/item/weapon/stool/padded, /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agB" = ( +"agD" = ( /obj/item/weapon/stool/padded, /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agC" = ( -/turf/simulated/wall/r_wall, -/area/engineering/atmos) -"agD" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) "agE" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, +/turf/simulated/wall/r_wall, /area/engineering/atmos) "agF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"agG" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) +"agH" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, @@ -3323,24 +3353,24 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"agG" = ( +"agI" = ( /obj/structure/sign/vacuum{ pixel_y = 32 }, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agH" = ( +"agJ" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agI" = ( +"agK" = ( /obj/item/stack/cable_coil, /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agJ" = ( +"agL" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3352,7 +3382,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agK" = ( +"agM" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3361,7 +3391,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agL" = ( +"agN" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3373,7 +3403,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"agM" = ( +"agO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -3388,13 +3418,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agN" = ( +"agP" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"agO" = ( +"agQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -3411,7 +3441,7 @@ /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled, /area/security/brig) -"agP" = ( +"agR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -3422,7 +3452,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"agQ" = ( +"agS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -3434,12 +3464,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"agR" = ( +"agT" = ( /obj/effect/floor_decal/industrial/loading, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"agS" = ( +"agU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -3449,7 +3479,7 @@ temperature = 278 }, /area/security/investigations) -"agT" = ( +"agV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -3458,37 +3488,37 @@ temperature = 278 }, /area/security/investigations) -"agU" = ( +"agW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"agV" = ( +"agX" = ( /obj/machinery/computer/arcade, /turf/simulated/floor/wood, /area/maintenance/civ) -"agW" = ( +"agY" = ( /obj/machinery/constructable_frame/machine_frame, /turf/simulated/floor/wood, /area/maintenance/civ) -"agX" = ( +"agZ" = ( /obj/item/stack/tile/floor, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agY" = ( +"aha" = ( /obj/item/stack/rods, /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"agZ" = ( +"ahb" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"aha" = ( +"ahc" = ( /turf/simulated/wall/r_wall, /area/engineering/drone_fabrication) -"ahb" = ( +"ahd" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -3504,12 +3534,12 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ahc" = ( +"ahe" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahd" = ( +"ahf" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -3517,7 +3547,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahe" = ( +"ahg" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ @@ -3526,7 +3556,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahf" = ( +"ahh" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/portables_connector, /obj/structure/window/reinforced{ @@ -3537,7 +3567,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahg" = ( +"ahi" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -3548,7 +3578,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahh" = ( +"ahj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ icon_state = "map"; dir = 1 @@ -3562,7 +3592,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahi" = ( +"ahk" = ( /obj/machinery/atmospherics/pipe/zpipe/down/cyan{ icon_state = "down"; dir = 8 @@ -3571,7 +3601,7 @@ /obj/machinery/firealarm/east, /turf/simulated/open, /area/engineering/atmos) -"ahj" = ( +"ahl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -3586,40 +3616,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) -"ahl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering) "ahm" = ( -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3646,12 +3643,13 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/firedoor, +/obj/machinery/alarm{ + pixel_y = 22 + }, /turf/simulated/floor/plating, /area/maintenance/engineering) "aho" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3666,6 +3664,38 @@ /turf/simulated/floor/plating, /area/maintenance/engineering) "ahp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ahq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering) +"ahr" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3679,7 +3709,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ahq" = ( +"ahs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -3698,10 +3728,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ahr" = ( +"aht" = ( /turf/simulated/wall/r_wall, /area/security/brig) -"ahs" = ( +"ahu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -3720,7 +3750,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aht" = ( +"ahv" = ( /obj/effect/floor_decal/corner/blue/full{ dir = 1 }, @@ -3737,22 +3767,22 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ahu" = ( +"ahw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/tiled, /area/security/brig) -"ahv" = ( +"ahx" = ( /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"ahw" = ( +"ahy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/mouse, /turf/simulated/floor/tiled, /area/security/brig) -"ahx" = ( +"ahz" = ( /obj/structure/filingcabinet/filingcabinet{ desc = "A large cabinet with drawers. There seems to be a layer of dust covering it." }, @@ -3768,7 +3798,7 @@ temperature = 278 }, /area/security/investigations) -"ahy" = ( +"ahA" = ( /obj/item/weapon/stool/padded{ desc = "Apply butt. This particular stool looks tattered and old. Perhaps there have been budget cuts?"; name = "Tattered Stool" @@ -3778,7 +3808,7 @@ temperature = 278 }, /area/security/investigations) -"ahz" = ( +"ahB" = ( /obj/machinery/alarm/cold{ dir = 8; icon_state = "alarm0"; @@ -3791,7 +3821,7 @@ temperature = 278 }, /area/security/investigations) -"ahA" = ( +"ahC" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -3804,10 +3834,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ahB" = ( +"ahD" = ( /turf/simulated/floor/wood, /area/maintenance/civ) -"ahC" = ( +"ahE" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3816,14 +3846,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahD" = ( +"ahF" = ( /obj/structure/grille, /obj/item/weapon/material/shard, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahE" = ( +"ahG" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "medium" @@ -3834,7 +3864,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahF" = ( +"ahH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3845,12 +3875,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahG" = ( +"ahI" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahH" = ( +"ahJ" = ( /obj/structure/grille, /obj/item/weapon/material/shard{ icon_state = "small" @@ -3864,7 +3894,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahI" = ( +"ahK" = ( /obj/item/stack/rods, /obj/item/weapon/material/shard{ icon_state = "small" @@ -3873,7 +3903,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahJ" = ( +"ahL" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "medium" @@ -3881,7 +3911,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahK" = ( +"ahM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -3893,7 +3923,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahL" = ( +"ahN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -3901,21 +3931,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/civ) -"ahM" = ( +"ahO" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahN" = ( +"ahP" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer" }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahO" = ( +"ahQ" = ( /obj/machinery/light{ dir = 1 }, @@ -3931,29 +3961,29 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahP" = ( +"ahR" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ahQ" = ( +"ahS" = ( /obj/machinery/computer/cryopod/robot{ pixel_y = 30 }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahR" = ( +"ahT" = ( /obj/machinery/drone_fabricator, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahS" = ( +"ahU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahT" = ( +"ahV" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -3962,12 +3992,12 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahU" = ( +"ahW" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ahV" = ( +"ahX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -3980,7 +4010,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ahW" = ( +"ahY" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 5 @@ -3994,7 +4024,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahX" = ( +"ahZ" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -4005,7 +4035,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahY" = ( +"aia" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -4016,7 +4046,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ahZ" = ( +"aib" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4027,7 +4057,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aia" = ( +"aic" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4040,7 +4070,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aib" = ( +"aid" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -4051,7 +4081,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aic" = ( +"aie" = ( /obj/machinery/atmospherics/pipe/zpipe/down/yellow{ dir = 8; pixel_x = 0 @@ -4063,7 +4093,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/engineering/atmos) -"aid" = ( +"aif" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4075,21 +4105,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aie" = ( +"aig" = ( /obj/structure/bed, /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/security/brig) -"aif" = ( +"aih" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/newscaster{ pixel_x = 27 }, /turf/simulated/floor/plating, /area/security/brig) -"aig" = ( +"aii" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4108,11 +4138,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aih" = ( +"aij" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aii" = ( +"aik" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = -24 @@ -4120,7 +4150,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"aij" = ( +"ail" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4129,12 +4159,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aik" = ( +"aim" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/brig) -"ail" = ( +"ain" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -4143,7 +4173,7 @@ temperature = 278 }, /area/security/investigations) -"aim" = ( +"aio" = ( /obj/structure/table/standard, /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled/dark{ @@ -4151,7 +4181,7 @@ temperature = 278 }, /area/security/investigations) -"ain" = ( +"aip" = ( /obj/structure/plasticflaps/airtight, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -4163,7 +4193,7 @@ temperature = 278 }, /area/security/investigations) -"aio" = ( +"aiq" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4174,7 +4204,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/investigations) -"aip" = ( +"air" = ( /obj/machinery/firealarm/north, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; @@ -4194,7 +4224,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"aiq" = ( +"ais" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ icon_state = "up-scrubbers"; @@ -4217,10 +4247,10 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"air" = ( +"ait" = ( /turf/simulated/wall, /area/security/investigations) -"ais" = ( +"aiu" = ( /obj/item/stack/tile/wood, /obj/effect/decal/cleanable/cobweb2{ icon_state = "cobweb1" @@ -4228,24 +4258,24 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/civ) -"ait" = ( +"aiv" = ( /obj/item/weapon/storage/toolbox, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiu" = ( +"aiw" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/maintenance/civ) -"aiv" = ( +"aix" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiw" = ( +"aiy" = ( /obj/item/weapon/material/shard, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aix" = ( +"aiz" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -4260,24 +4290,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"aiy" = ( +"aiA" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiz" = ( +"aiB" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/maintenance/civ) -"aiA" = ( +"aiC" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiB" = ( +"aiD" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, @@ -4287,7 +4317,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiC" = ( +"aiE" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/black, /obj/machinery/meter, /obj/effect/floor_decal/industrial/warning{ @@ -4296,7 +4326,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiD" = ( +"aiF" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 9 }, @@ -4306,7 +4336,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiE" = ( +"aiG" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -4314,7 +4344,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"aiF" = ( +"aiH" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -4324,28 +4354,28 @@ }, /turf/simulated/wall/r_wall, /area/engineering/drone_fabrication) -"aiG" = ( +"aiI" = ( /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiH" = ( +"aiJ" = ( /obj/machinery/computer/drone_control, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiI" = ( +"aiK" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiJ" = ( +"aiL" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aiK" = ( +"aiM" = ( /turf/simulated/wall/r_wall, /area/maintenance/atmos_control) -"aiL" = ( +"aiN" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -4354,7 +4384,7 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/atmos_control) -"aiM" = ( +"aiO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -4374,7 +4404,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiN" = ( +"aiP" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -4389,7 +4419,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiO" = ( +"aiQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4403,7 +4433,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiP" = ( +"aiR" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 5 @@ -4422,7 +4452,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiQ" = ( +"aiS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -4437,7 +4467,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiR" = ( +"aiT" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, @@ -4446,7 +4476,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiS" = ( +"aiU" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 }, @@ -4457,7 +4487,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"aiT" = ( +"aiV" = ( /obj/machinery/atmospherics/pipe/zpipe/down/red{ icon_state = "down"; dir = 8 @@ -4465,7 +4495,7 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/engineering/atmos) -"aiU" = ( +"aiW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4476,10 +4506,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aiV" = ( +"aiX" = ( /turf/simulated/wall/r_wall, /area/maintenance/security_starboard) -"aiW" = ( +"aiY" = ( /obj/machinery/light/small{ dir = 8 }, @@ -4490,7 +4520,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aiX" = ( +"aiZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -4502,7 +4532,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aiY" = ( +"aja" = ( /obj/machinery/door/airlock/glass_security{ name = "Solitary Confinement 2"; req_access = list(2) @@ -4516,7 +4546,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aiZ" = ( +"ajb" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -4529,13 +4559,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aja" = ( +"ajc" = ( /turf/simulated/wall, /area/security/main) -"ajb" = ( +"ajd" = ( /turf/simulated/wall/r_wall, /area/security/main) -"ajc" = ( +"aje" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -4548,7 +4578,7 @@ temperature = 278 }, /area/security/investigations) -"ajd" = ( +"ajf" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -4561,7 +4591,7 @@ temperature = 278 }, /area/security/investigations) -"aje" = ( +"ajg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -4571,7 +4601,7 @@ temperature = 278 }, /area/security/investigations) -"ajf" = ( +"ajh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -4592,7 +4622,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajg" = ( +"aji" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -4606,7 +4636,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"ajh" = ( +"ajj" = ( /obj/structure/closet/crate{ name = "Case Folders Crate" }, @@ -4622,21 +4652,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/security/investigations) -"aji" = ( +"ajk" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajj" = ( +"ajl" = ( /obj/item/stack/material/wood, /obj/random/loot, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajk" = ( +"ajm" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajl" = ( +"ajn" = ( /obj/structure/grille/broken, /obj/item/stack/rods, /obj/item/weapon/material/shard{ @@ -4648,24 +4678,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajm" = ( +"ajo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajn" = ( -/turf/simulated/floor/plating, -/area/engineering/engine_waste) -"ajo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/plating, -/area/engineering/engine_waste) "ajp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/engineering/engine_waste) "ajq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/plating, +/area/engineering/engine_waste) +"ajr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/engineering/engine_waste) +"ajs" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -4681,7 +4711,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajr" = ( +"ajt" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4698,7 +4728,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajs" = ( +"aju" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -4710,7 +4740,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajt" = ( +"ajv" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -4718,7 +4748,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aju" = ( +"ajw" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light{ dir = 4; @@ -4731,16 +4761,16 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ajv" = ( +"ajx" = ( /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajw" = ( +"ajy" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajx" = ( +"ajz" = ( /obj/machinery/light{ dir = 1 }, @@ -4749,7 +4779,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajy" = ( +"ajA" = ( /obj/machinery/light{ dir = 1; icon_state = "tube1"; @@ -4757,7 +4787,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajz" = ( +"ajB" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance Access"; req_access = list(24) @@ -4770,7 +4800,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ajA" = ( +"ajC" = ( /obj/machinery/door/airlock/glass_atmos{ name = "Port Station"; req_access = list(24) @@ -4786,7 +4816,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"ajB" = ( +"ajD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4804,7 +4834,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ajC" = ( +"ajE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4818,26 +4848,26 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos) -"ajD" = ( +"ajF" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"ajE" = ( +"ajG" = ( /turf/simulated/wall/r_wall, /area/security/armoury) -"ajF" = ( +"ajH" = ( /obj/structure/table/standard, /obj/item/weapon/paper, /obj/item/weapon/pen, /turf/simulated/floor/plating, /area/security/brig) -"ajG" = ( +"ajI" = ( /obj/item/weapon/stool, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/plating, /area/security/brig) -"ajH" = ( +"ajJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -4852,7 +4882,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"ajI" = ( +"ajK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -4873,7 +4903,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"ajJ" = ( +"ajL" = ( /obj/structure/table/standard, /obj/machinery/recharger/wallcharger{ pixel_y = 24 @@ -4892,7 +4922,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajK" = ( +"ajM" = ( /obj/structure/table/standard, /obj/machinery/recharger/wallcharger{ pixel_y = 24 @@ -4907,7 +4937,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajL" = ( +"ajN" = ( /obj/structure/table/standard, /obj/item/device/flashlight/maglight, /obj/item/device/flashlight/maglight, @@ -4927,12 +4957,12 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ajM" = ( +"ajO" = ( /obj/machinery/vending/security, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/main) -"ajN" = ( +"ajP" = ( /obj/structure/closet/secure_closet/security, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -4941,7 +4971,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajO" = ( +"ajQ" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/status_display{ @@ -4950,27 +4980,32 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajP" = ( +"ajR" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"ajQ" = ( +"ajS" = ( /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"ajR" = ( +"ajT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/security/investigations) -"ajS" = ( +"ajU" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5000,7 +5035,7 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajT" = ( +"ajV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -5013,34 +5048,34 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajU" = ( +"ajW" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 }, -/obj/structure/closet{ - name = "Evidence Closet" - }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, /turf/simulated/floor/tiled, /area/security/investigations) -"ajV" = ( +"ajX" = ( /obj/structure/table/wood, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajW" = ( +"ajY" = ( /obj/item/stack/tile/wood, /turf/simulated/floor/plating, /area/maintenance/civ) -"ajX" = ( +"ajZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -5049,32 +5084,32 @@ }, /turf/simulated/floor/wood, /area/maintenance/civ) -"ajY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/civ) -"ajZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/rack, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/civ) "aka" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/civ) +"akb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/civ) +"akc" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akb" = ( +"akd" = ( /obj/item/stack/tile/floor, /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akc" = ( +"ake" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5083,25 +5118,25 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akd" = ( +"akf" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ake" = ( +"akg" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akf" = ( +"akh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akg" = ( +"aki" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -5115,7 +5150,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"akh" = ( +"akj" = ( /obj/machinery/door/airlock/maintenance{ name = "Drone Fabrication/Engine Waste Handling"; req_one_access = list(11,24) @@ -5138,7 +5173,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"aki" = ( +"akk" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5153,7 +5188,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akj" = ( +"akl" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -5167,14 +5202,14 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akk" = ( +"akm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akl" = ( +"akn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5194,7 +5229,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akm" = ( +"ako" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5207,7 +5242,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"akn" = ( +"akp" = ( /obj/machinery/door/airlock/maintenance{ name = "Drone Fabrication"; req_one_access = list(11,24) @@ -5230,36 +5265,6 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ako" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) -"akp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/atmos_control) "akq" = ( /obj/structure/cable{ d1 = 4; @@ -5267,9 +5272,39 @@ icon_state = "4-8"; pixel_x = 0 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) "akr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"aks" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/atmos_control) +"akt" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance Access"; req_access = null; @@ -5284,7 +5319,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"aks" = ( +"aku" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -5292,7 +5327,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akt" = ( +"akv" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -5305,7 +5340,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"aku" = ( +"akw" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid" @@ -5321,7 +5356,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"akv" = ( +"akx" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 4 @@ -5331,7 +5366,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akw" = ( +"aky" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5344,7 +5379,7 @@ /obj/item/weapon/storage/briefcase/inflatable, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akx" = ( +"akz" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5363,7 +5398,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aky" = ( +"akA" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -5382,7 +5417,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akz" = ( +"akB" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -5390,11 +5425,11 @@ /obj/structure/window/reinforced, /turf/simulated/open, /area/engineering/atmos/storage) -"akA" = ( +"akC" = ( /obj/structure/window/reinforced, /turf/simulated/open, /area/engineering/atmos/storage) -"akB" = ( +"akD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light{ icon_state = "tube1"; @@ -5409,7 +5444,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akC" = ( +"akE" = ( /obj/machinery/newscaster{ pixel_x = 27 }, @@ -5419,7 +5454,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"akD" = ( +"akF" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5430,7 +5465,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/engineering) -"akE" = ( +"akG" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; name = "Security"; @@ -5438,7 +5473,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"akF" = ( +"akH" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 2; @@ -5459,7 +5494,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akG" = ( +"akI" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5474,7 +5509,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akH" = ( +"akJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -5485,7 +5520,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akI" = ( +"akK" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -5501,13 +5536,13 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"akJ" = ( +"akL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/main) -"akK" = ( +"akM" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5520,13 +5555,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akL" = ( +"akN" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akM" = ( +"akO" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -5540,7 +5575,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"akN" = ( +"akP" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 1 @@ -5550,7 +5585,7 @@ temperature = 278 }, /area/security/investigations) -"akO" = ( +"akQ" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 1 @@ -5564,7 +5599,15 @@ temperature = 278 }, /area/security/investigations) -"akP" = ( +"akR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark{ + name = "cooled dark floor"; + temperature = 278 + }, +/area/security/investigations) +"akS" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5579,14 +5622,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"akQ" = ( +"akT" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 }, /turf/simulated/floor/tiled, /area/security/investigations) -"akR" = ( +"akU" = ( /obj/structure/stairs/east, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -5594,12 +5637,12 @@ }, /turf/simulated/floor/tiled, /area/security/investigations) -"akS" = ( +"akV" = ( /obj/item/stack/tile/wood, /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/civ) -"akT" = ( +"akW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/flag/hegemony{ @@ -5608,7 +5651,7 @@ }, /turf/simulated/floor/wood, /area/maintenance/civ) -"akU" = ( +"akX" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -5622,26 +5665,26 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"akV" = ( +"akY" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"akW" = ( +"akZ" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akX" = ( +"ala" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/civ) -"akY" = ( +"alb" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_room) -"akZ" = ( +"alc" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "Waste Pump" @@ -5658,7 +5701,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ala" = ( +"ald" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, @@ -5672,7 +5715,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alb" = ( +"ale" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -5689,7 +5732,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alc" = ( +"alf" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -5698,7 +5741,7 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"ald" = ( +"alg" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -5707,7 +5750,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"ale" = ( +"alh" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(11); req_one_access = null @@ -5717,7 +5760,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/atmos_control) -"alf" = ( +"ali" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -5725,7 +5768,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"alg" = ( +"alj" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -5735,7 +5778,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"alh" = ( +"alk" = ( /obj/machinery/power/smes/buildable{ charge = 2e+006; input_attempt = 1; @@ -5745,7 +5788,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/atmos_control) -"ali" = ( +"all" = ( /obj/structure/table/standard, /obj/item/device/multitool, /obj/structure/fireaxecabinet{ @@ -5753,20 +5796,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alj" = ( +"alm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alk" = ( +"aln" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"all" = ( +"alo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 8 @@ -5782,7 +5825,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alm" = ( +"alp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5790,7 +5833,7 @@ /obj/machinery/pipedispenser, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aln" = ( +"alq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5798,14 +5841,14 @@ /obj/machinery/pipedispenser/disposal, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alo" = ( +"alr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alp" = ( +"als" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -5813,7 +5856,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"alq" = ( +"alt" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -5826,15 +5869,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/engineering) -"alr" = ( +"alu" = ( /obj/structure/closet/bombclosetsecurity, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"als" = ( +"alv" = ( /obj/structure/closet/l3closet/general, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alt" = ( +"alw" = ( /obj/machinery/light{ dir = 1 }, @@ -5854,7 +5897,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alu" = ( +"alx" = ( /obj/structure/table/rack, /obj/item/device/magnetic_lock/security{ pixel_x = -3; @@ -5870,7 +5913,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alv" = ( +"aly" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -5891,14 +5934,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alw" = ( +"alz" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 22 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alx" = ( +"alA" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 22 @@ -5912,7 +5955,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aly" = ( +"alB" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Laser Rifle)"; req_access = list(3) @@ -5921,7 +5964,7 @@ /obj/item/weapon/gun/energy/rifle/laser, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"alz" = ( +"alC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -5931,7 +5974,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"alA" = ( +"alD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/camera/network/security{ c_tag = "Security - Corridor Camera 9"; @@ -5944,7 +5987,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"alB" = ( +"alE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -5962,17 +6005,17 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"alC" = ( +"alF" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/security/main) -"alD" = ( +"alG" = ( /turf/simulated/floor/tiled, /area/security/main) -"alE" = ( +"alH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5982,7 +6025,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/security/main) -"alF" = ( +"alI" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -5992,13 +6035,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"alG" = ( +"alJ" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/main) -"alH" = ( +"alK" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -6009,7 +6052,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/main) -"alI" = ( +"alL" = ( /obj/machinery/door/airlock/security{ name = "Evidence Storage"; req_access = list(1) @@ -6022,7 +6065,7 @@ temperature = 278 }, /area/security/investigations) -"alJ" = ( +"alM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Investigations Division"; @@ -6038,7 +6081,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/investigations) -"alK" = ( +"alN" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -6052,7 +6095,7 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"alL" = ( +"alO" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -6065,16 +6108,16 @@ }, /turf/simulated/floor/plating, /area/security/investigations) -"alM" = ( +"alP" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/plating, /area/maintenance/civ) -"alN" = ( +"alQ" = ( /obj/item/weapon/stool/padded, /obj/item/weapon/material/shard, /turf/simulated/floor/plating, /area/maintenance/civ) -"alO" = ( +"alR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -6085,7 +6128,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"alP" = ( +"alS" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -6093,7 +6136,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"alQ" = ( +"alT" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -6105,12 +6148,12 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"alR" = ( +"alU" = ( /obj/effect/decal/cleanable/generic, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"alS" = ( +"alV" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for engine core."; id = "EngineVent"; @@ -6122,7 +6165,7 @@ /obj/structure/window/basic, /turf/simulated/floor/plating, /area/engineering/engine_room) -"alT" = ( +"alW" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/door/blast/regular{ dir = 4; @@ -6133,7 +6176,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alU" = ( +"alX" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -6143,7 +6186,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_waste) -"alV" = ( +"alY" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6158,40 +6201,40 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"alW" = ( +"alZ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"alX" = ( +"ama" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"alY" = ( +"amb" = ( /turf/simulated/wall/r_wall, /area/engineering/storage) -"alZ" = ( +"amc" = ( /obj/machinery/power/emitter, /turf/simulated/floor/plating, /area/engineering/storage) -"ama" = ( +"amd" = ( /obj/structure/closet/crate, /obj/item/stack/material/phoron{ amount = 25 }, /turf/simulated/floor/plating, /area/engineering/storage) -"amb" = ( +"ame" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/closet/crate/solar, /turf/simulated/floor/plating, /area/engineering/storage) -"amc" = ( +"amf" = ( /obj/machinery/light{ dir = 1 }, @@ -6204,15 +6247,15 @@ /obj/machinery/power/port_gen/pacman, /turf/simulated/floor/plating, /area/engineering/storage) -"amd" = ( +"amg" = ( /obj/machinery/shield_capacitor, /turf/simulated/floor/plating, /area/engineering/storage) -"ame" = ( +"amh" = ( /obj/machinery/shield_gen, /turf/simulated/floor/plating, /area/engineering/storage) -"amf" = ( +"ami" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/structure/sign/nosmoking_2{ @@ -6220,14 +6263,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amg" = ( +"amj" = ( /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amh" = ( +"amk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ami" = ( +"aml" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -6243,7 +6286,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amj" = ( +"amm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6251,7 +6294,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amk" = ( +"amn" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -6263,7 +6306,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aml" = ( +"amo" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6274,7 +6317,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"amm" = ( +"amp" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Maintenance"; req_access = list(12,24) @@ -6290,7 +6333,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"amn" = ( +"amq" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6301,7 +6344,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amo" = ( +"amr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 4; @@ -6314,7 +6357,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amp" = ( +"ams" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -6330,20 +6373,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amq" = ( +"amt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amr" = ( +"amu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ams" = ( +"amv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 @@ -6351,7 +6394,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amt" = ( +"amw" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6365,7 +6408,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amu" = ( +"amx" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -6374,10 +6417,10 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"amv" = ( +"amy" = ( /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amw" = ( +"amz" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -6397,7 +6440,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amx" = ( +"amA" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Ion Rifle)"; req_access = list(3) @@ -6405,11 +6448,11 @@ /obj/item/weapon/gun/energy/ionrifle, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"amy" = ( +"amB" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall/r_wall, /area/maintenance/security_starboard) -"amz" = ( +"amC" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -6426,11 +6469,11 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"amA" = ( +"amD" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/main) -"amB" = ( +"amE" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -6442,19 +6485,19 @@ /obj/item/clothing/accessory/holster/waist, /turf/simulated/floor/tiled/dark, /area/security/main) -"amC" = ( +"amF" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/dark, /area/security/main) -"amD" = ( +"amG" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/main) -"amE" = ( +"amH" = ( /obj/structure/window/reinforced, /obj/structure/closet/secure_closet/security_cadet, /obj/effect/floor_decal/industrial/outline/yellow, @@ -6464,18 +6507,18 @@ }, /turf/simulated/floor/tiled/dark, /area/security/main) -"amF" = ( +"amI" = ( /obj/structure/stairs/north, /turf/simulated/floor/tiled, /area/security/brig) -"amG" = ( +"amJ" = ( /obj/structure/stairs/north, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"amH" = ( +"amK" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6483,21 +6526,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"amI" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, +"amL" = ( /obj/structure/noticeboard{ pixel_x = 0; pixel_y = 32 }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, /obj/machinery/light{ icon_state = "tube1"; dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"amJ" = ( +"amM" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6511,7 +6554,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"amK" = ( +"amN" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6523,7 +6566,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled, /area/security/brig) -"amL" = ( +"amO" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -6539,13 +6582,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"amM" = ( +"amP" = ( /obj/structure/table/wood, /obj/item/stack/material/wood, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"amN" = ( +"amQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -6557,11 +6600,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"amO" = ( +"amR" = ( /obj/item/stack/rods, /turf/simulated/floor/plating, /area/maintenance/civ) -"amP" = ( +"amS" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -6571,52 +6614,52 @@ }, /turf/simulated/floor/tiled, /area/maintenance/civ) -"amQ" = ( +"amT" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) -"amR" = ( +"amU" = ( /obj/machinery/light/spot, /obj/machinery/light/spot, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"amS" = ( +"amV" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amT" = ( +"amW" = ( /turf/simulated/floor/plating, /area/engineering/engine_room) -"amU" = ( +"amX" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amV" = ( +"amY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black{ icon_state = "map"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amW" = ( +"amZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amX" = ( +"ana" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amY" = ( +"anb" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine control room blast doors."; @@ -6629,10 +6672,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"amZ" = ( +"anc" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"ana" = ( +"and" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -6641,10 +6684,10 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"anb" = ( +"ane" = ( /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"anc" = ( +"anf" = ( /obj/structure/closet/crate, /obj/item/weapon/circuitboard/smes, /obj/item/weapon/circuitboard/smes, @@ -6656,20 +6699,20 @@ /obj/item/weapon/smes_coil/super_io, /turf/simulated/floor/plating, /area/engineering/storage) -"and" = ( +"ang" = ( /turf/simulated/floor/plating, /area/engineering/storage) -"ane" = ( +"anh" = ( /obj/machinery/shieldgen, /turf/simulated/floor/plating, /area/engineering/storage) -"anf" = ( +"ani" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"ang" = ( +"anj" = ( /turf/simulated/open, /area/turbolift/engineering_station) -"anh" = ( +"ank" = ( /obj/structure/dispenser/oxygen{ phorontanks = 10 }, @@ -6680,7 +6723,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ani" = ( +"anl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -6693,17 +6736,17 @@ /obj/machinery/space_heater, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anj" = ( +"anm" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ank" = ( +"ann" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anl" = ( +"ano" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; name = "Atmospherics"; @@ -6711,7 +6754,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"anm" = ( +"anp" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -6719,7 +6762,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"ann" = ( +"anq" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -6727,13 +6770,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ano" = ( +"anr" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"anp" = ( +"ans" = ( /obj/structure/table/rack, /obj/item/clothing/suit/storage/vest/heavy/officer, /obj/item/clothing/suit/storage/vest/heavy/officer, @@ -6741,14 +6784,14 @@ /obj/item/clothing/suit/storage/vest/heavy/officer, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anq" = ( +"ant" = ( /obj/structure/table/rack, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/reagent_containers/spray/pepper, /obj/item/weapon/reagent_containers/spray/pepper, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anr" = ( +"anu" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -6756,7 +6799,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ans" = ( +"anv" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/riot, /obj/item/clothing/head/helmet/riot, @@ -6779,11 +6822,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ant" = ( +"anw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anu" = ( +"anx" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -6796,7 +6839,7 @@ /obj/item/weapon/gun/energy/gun, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"anv" = ( +"any" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -6821,7 +6864,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"anw" = ( +"anz" = ( /obj/structure/table/standard, /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ @@ -6840,7 +6883,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/main) -"anx" = ( +"anA" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -6851,7 +6894,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"any" = ( +"anB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6866,19 +6909,19 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anz" = ( +"anC" = ( /obj/machinery/disposal, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/security/main) -"anA" = ( +"anD" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/main) -"anB" = ( +"anE" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ pixel_x = 28; @@ -6886,13 +6929,13 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"anC" = ( +"anF" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"anD" = ( +"anG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 8 @@ -6915,7 +6958,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anE" = ( +"anH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -6932,7 +6975,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anF" = ( +"anI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -6952,7 +6995,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anG" = ( +"anJ" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -6964,13 +7007,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"anH" = ( +"anK" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/civ) -"anI" = ( +"anL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -6979,15 +7022,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/civ) -"anJ" = ( +"anM" = ( /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/civ) -"anK" = ( +"anN" = ( /turf/simulated/wall/r_wall, /area/bridge) -"anL" = ( +"anO" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -7016,80 +7059,6 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"anN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/bridge) -"anO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) "anP" = ( /obj/structure/grille, /obj/structure/window/reinforced, @@ -7105,15 +7074,15 @@ opacity = 0 }, /obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, /turf/simulated/floor/plating, /area/bridge) "anQ" = ( @@ -7134,6 +7103,80 @@ opacity = 0 }, /obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"anR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"anS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"anT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -7145,10 +7188,10 @@ }, /turf/simulated/floor/plating, /area/bridge) -"anR" = ( +"anU" = ( /turf/simulated/mineral, /area/mine/unexplored) -"anS" = ( +"anV" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 4; tag_north = 2; @@ -7159,14 +7202,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anT" = ( +"anW" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ icon_state = "map"; dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anU" = ( +"anX" = ( /obj/machinery/atmospherics/omni/filter{ tag_east = 0; tag_north = 2; @@ -7177,7 +7220,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anV" = ( +"anY" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, @@ -7188,7 +7231,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"anW" = ( +"anZ" = ( /obj/machinery/power/smes/buildable{ charge = 1e+007; cur_coils = 4; @@ -7204,7 +7247,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"anX" = ( +"aoa" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7216,7 +7259,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"anY" = ( +"aob" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/lights/mixed, /obj/item/device/radio/intercom{ @@ -7231,7 +7274,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"anZ" = ( +"aoc" = ( /obj/structure/table/reinforced, /obj/structure/cable{ d1 = 1; @@ -7252,7 +7295,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aoa" = ( +"aod" = ( /obj/structure/table/reinforced, /obj/item/stack/cable_coil{ pixel_x = 3; @@ -7268,7 +7311,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aob" = ( +"aoe" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -7277,7 +7320,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_smes) -"aoc" = ( +"aof" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/newscaster{ @@ -7285,34 +7328,34 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aod" = ( +"aog" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aoe" = ( +"aoh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aof" = ( +"aoi" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/storage) -"aog" = ( +"aoj" = ( /obj/machinery/shieldwallgen, /turf/simulated/floor/plating, /area/engineering/storage) -"aoh" = ( +"aok" = ( /obj/machinery/suit_cycler/engineering, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aoi" = ( +"aol" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -7328,7 +7371,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aoj" = ( +"aom" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -7336,21 +7379,21 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aok" = ( +"aon" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aol" = ( +"aoo" = ( /obj/structure/table/standard, /obj/item/device/pipe_painter, /obj/item/weapon/pipewrench, /obj/item/weapon/pipewrench, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aom" = ( +"aop" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -7367,7 +7410,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"aon" = ( +"aoq" = ( /obj/machinery/requests_console{ department = "Atmospherics"; departmentType = 4; @@ -7385,7 +7428,7 @@ /obj/structure/closet/wardrobe/atmospherics_yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aoo" = ( +"aor" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -7400,7 +7443,7 @@ /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aop" = ( +"aos" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -7412,7 +7455,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aoq" = ( +"aot" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -7423,20 +7466,20 @@ /obj/item/device/radio/off, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aor" = ( +"aou" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aos" = ( +"aov" = ( /turf/simulated/floor/plating, /area/maintenance/engineering) -"aot" = ( +"aow" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aou" = ( +"aox" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -7451,7 +7494,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aov" = ( +"aoy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -7470,7 +7513,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aow" = ( +"aoz" = ( /obj/structure/table/rack, /obj/item/clothing/mask/gas{ pixel_x = -3; @@ -7492,7 +7535,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aox" = ( +"aoA" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/seccarts{ pixel_x = -3; @@ -7505,7 +7548,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoy" = ( +"aoB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ d1 = 2; @@ -7514,7 +7557,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoz" = ( +"aoC" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Armoury Section"; req_access = list(3) @@ -7527,7 +7570,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoA" = ( +"aoD" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -7535,11 +7578,11 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoB" = ( +"aoE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoC" = ( +"aoF" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Weaponry (Shotgun)"; req_access = list(3) @@ -7548,7 +7591,7 @@ /obj/item/weapon/gun/projectile/shotgun/pump, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aoD" = ( +"aoG" = ( /obj/machinery/light/small{ dir = 8 }, @@ -7559,7 +7602,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aoE" = ( +"aoH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7568,7 +7611,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aoF" = ( +"aoI" = ( /obj/machinery/door/airlock/glass_security{ name = "Solitary Confinement 1"; req_access = list(2) @@ -7582,7 +7625,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/brig) -"aoG" = ( +"aoJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -7594,7 +7637,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoH" = ( +"aoK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -7605,7 +7648,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoI" = ( +"aoL" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -7622,7 +7665,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"aoJ" = ( +"aoM" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -7635,7 +7678,7 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled, /area/security/main) -"aoK" = ( +"aoN" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -7655,7 +7698,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoL" = ( +"aoO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7669,7 +7712,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoM" = ( +"aoP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7684,7 +7727,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoN" = ( +"aoQ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -7698,7 +7741,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/main) -"aoO" = ( +"aoR" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -7709,7 +7752,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"aoP" = ( +"aoS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -7734,7 +7777,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"aoQ" = ( +"aoT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -7748,19 +7791,19 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aoR" = ( +"aoU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aoS" = ( +"aoV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/brig) -"aoT" = ( +"aoW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 30; pixel_y = 0 @@ -7776,15 +7819,15 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aoU" = ( +"aoX" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/maintenance/civ) -"aoV" = ( +"aoY" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/plating, /area/maintenance/civ) -"aoW" = ( +"aoZ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7797,17 +7840,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aoX" = ( +"apa" = ( /obj/structure/largecrate/animal/cow, /turf/simulated/floor/plating, /area/maintenance/civ) -"aoY" = ( +"apb" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/civ) -"aoZ" = ( +"apc" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -7827,7 +7870,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/bridge) -"apa" = ( +"apd" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -7839,7 +7882,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"apb" = ( +"ape" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7847,7 +7890,7 @@ /obj/structure/bed/chair/comfy/blue, /turf/simulated/floor/tiled, /area/bridge) -"apc" = ( +"apf" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7857,7 +7900,7 @@ /obj/item/device/multitool, /turf/simulated/floor/tiled, /area/bridge) -"apd" = ( +"apg" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Deck Fore" }, @@ -7876,7 +7919,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/bridge) -"ape" = ( +"aph" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -7885,7 +7928,7 @@ /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled, /area/bridge) -"apf" = ( +"api" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -7897,7 +7940,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"apg" = ( +"apj" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -7918,29 +7961,29 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/bridge) -"aph" = ( +"apk" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"api" = ( +"apl" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apj" = ( +"apm" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apk" = ( +"apn" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"apl" = ( +"apo" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -7959,10 +8002,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apm" = ( +"app" = ( /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apn" = ( +"apq" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -7971,12 +8014,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"apo" = ( +"apr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"app" = ( +"aps" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -7991,7 +8034,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"apq" = ( +"apt" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -8003,7 +8046,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"apr" = ( +"apu" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -8012,11 +8055,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/storage) -"aps" = ( +"apv" = ( /obj/machinery/shield_gen/external, /turf/simulated/floor/plating, /area/engineering/storage) -"apt" = ( +"apw" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/atmos, /obj/item/clothing/head/helmet/space/void/atmos, @@ -8051,20 +8094,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apu" = ( +"apx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apv" = ( +"apy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apw" = ( +"apz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -8077,7 +8120,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apx" = ( +"apA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8087,7 +8130,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apy" = ( +"apB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8096,7 +8139,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apz" = ( +"apC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -8105,7 +8148,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apA" = ( +"apD" = ( /obj/machinery/door/airlock/atmos{ name = "Atmospherics Locker Room"; req_access = list(24) @@ -8119,7 +8162,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apB" = ( +"apE" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -8132,7 +8175,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apC" = ( +"apF" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Atmospherics Locker Room"; dir = 8 @@ -8147,7 +8190,7 @@ /obj/item/weapon/reagent_containers/pill/antitox, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"apD" = ( +"apG" = ( /obj/structure/table/rack{ dir = 1 }, @@ -8159,18 +8202,18 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apE" = ( +"apH" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apF" = ( +"apI" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apG" = ( +"apJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8184,20 +8227,20 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"apH" = ( +"apK" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apI" = ( +"apL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apJ" = ( +"apM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -8211,7 +8254,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apK" = ( +"apN" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Armoury Section"; req_access = list(3) @@ -8225,7 +8268,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apL" = ( +"apO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8239,7 +8282,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apM" = ( +"apP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -8248,13 +8291,13 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apN" = ( +"apQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"apO" = ( +"apR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -8268,7 +8311,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"apP" = ( +"apS" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8278,7 +8321,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/main) -"apQ" = ( +"apT" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -8288,7 +8331,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"apR" = ( +"apU" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -8297,17 +8340,17 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/security/main) -"apS" = ( +"apV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, /area/security/main) -"apT" = ( +"apW" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/tiled, /area/security/main) -"apU" = ( +"apX" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -8321,7 +8364,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/main) -"apV" = ( +"apY" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8337,7 +8380,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/main) -"apW" = ( +"apZ" = ( /obj/structure/flora/pottedplant/random, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8345,7 +8388,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"apX" = ( +"aqa" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -8359,7 +8402,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/main) -"apY" = ( +"aqb" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -8369,13 +8412,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"apZ" = ( +"aqc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aqa" = ( +"aqd" = ( /obj/effect/floor_decal/corner/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8389,7 +8432,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aqb" = ( +"aqe" = ( /obj/structure/flora/pottedplant/random, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -8400,7 +8443,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aqc" = ( +"aqf" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8409,7 +8452,7 @@ /obj/item/roller, /turf/simulated/floor/tiled, /area/security/brig) -"aqd" = ( +"aqg" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8418,7 +8461,7 @@ /obj/item/bodybag/cryobag, /turf/simulated/floor/tiled, /area/security/brig) -"aqe" = ( +"aqh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 10 @@ -8436,7 +8479,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"aqf" = ( +"aqi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8445,14 +8488,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aqg" = ( +"aqj" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aqh" = ( +"aqk" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -8478,7 +8521,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aqi" = ( +"aql" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -8490,14 +8533,14 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/bridge) -"aqj" = ( +"aqm" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"aqk" = ( +"aqn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8505,21 +8548,21 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aql" = ( +"aqo" = ( /turf/simulated/floor/tiled, /area/bridge) -"aqm" = ( +"aqp" = ( /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, /area/bridge) -"aqn" = ( +"aqq" = ( /obj/effect/floor_decal/corner/lime/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"aqo" = ( +"aqr" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -8531,7 +8574,7 @@ /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/tiled, /area/bridge) -"aqp" = ( +"aqs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -8553,7 +8596,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aqq" = ( +"aqt" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -8565,11 +8608,11 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqr" = ( +"aqu" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqs" = ( +"aqv" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -8577,7 +8620,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqt" = ( +"aqw" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -8585,7 +8628,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aqu" = ( +"aqx" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; @@ -8600,7 +8643,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_smes) -"aqv" = ( +"aqy" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -8608,7 +8651,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqw" = ( +"aqz" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -8620,7 +8663,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqx" = ( +"aqA" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -8636,7 +8679,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqy" = ( +"aqB" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -8652,7 +8695,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqz" = ( +"aqC" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -8666,7 +8709,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqA" = ( +"aqD" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "SMES Access"; req_access = list(11) @@ -8688,7 +8731,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) -"aqB" = ( +"aqE" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -8706,7 +8749,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aqC" = ( +"aqF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -8715,7 +8758,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aqD" = ( +"aqG" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -8728,7 +8771,7 @@ /obj/item/weapon/storage/bag/circuits/basic, /turf/simulated/floor/plating, /area/engineering/storage) -"aqE" = ( +"aqH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8740,16 +8783,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/storage) -"aqF" = ( +"aqI" = ( /obj/machinery/portable_atmospherics/canister/phoron, /obj/machinery/firealarm/south, /turf/simulated/floor/plating, /area/engineering/storage) -"aqG" = ( +"aqJ" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/simulated/floor/plating, /area/engineering/storage) -"aqH" = ( +"aqK" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/atmos, /obj/item/clothing/head/helmet/space/void/atmos, @@ -8776,12 +8819,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqI" = ( +"aqL" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqJ" = ( +"aqM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -8796,7 +8839,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqK" = ( +"aqN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 4; @@ -8808,7 +8851,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqL" = ( +"aqO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8820,7 +8863,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqM" = ( +"aqP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8833,7 +8876,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqN" = ( +"aqQ" = ( /obj/machinery/power/apc/super{ name = "south bump"; pixel_y = -24 @@ -8844,7 +8887,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqO" = ( +"aqR" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8856,7 +8899,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqP" = ( +"aqS" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8868,7 +8911,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqQ" = ( +"aqT" = ( /obj/structure/closet/secure_closet/atmos_personal, /obj/item/device/flashlight, /obj/effect/floor_decal/industrial/outline/yellow, @@ -8876,19 +8919,19 @@ /obj/item/weapon/storage/belt/utility, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqR" = ( +"aqU" = ( /obj/structure/dispenser/oxygen{ phorontanks = 10 }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"aqS" = ( +"aqV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aqT" = ( +"aqW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -8902,12 +8945,12 @@ /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aqU" = ( +"aqX" = ( /obj/machinery/deployable/barrier, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqV" = ( +"aqY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -8921,7 +8964,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqW" = ( +"aqZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -8929,7 +8972,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqX" = ( +"ara" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (.45 lethal)" }, @@ -8942,7 +8985,7 @@ /obj/item/ammo_magazine/c45m, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqY" = ( +"arb" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (45. less-than-lethal)" }, @@ -8954,7 +8997,7 @@ /obj/item/ammo_magazine/c45m/rubber, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aqZ" = ( +"arc" = ( /obj/structure/closet/secure_closet/guncabinet{ name = "Ammunition (shotgun less-than-lethal)" }, @@ -8975,14 +9018,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ara" = ( +"ard" = ( /obj/structure/sign/securearea{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"arb" = ( +"are" = ( /obj/machinery/computer/sentencing/courtroom{ pixel_y = 28 }, @@ -8991,7 +9034,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"arc" = ( +"arf" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -9007,7 +9050,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ard" = ( +"arg" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9022,7 +9065,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"are" = ( +"arh" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9037,7 +9080,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"arf" = ( +"ari" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -9049,7 +9092,7 @@ /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/security/brig) -"arg" = ( +"arj" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9064,7 +9107,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arh" = ( +"ark" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ @@ -9073,7 +9116,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ari" = ( +"arl" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9094,7 +9137,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"arj" = ( +"arm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -9119,7 +9162,7 @@ }, /turf/simulated/floor/tiled, /area/security/main) -"ark" = ( +"arn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9140,7 +9183,7 @@ }, /turf/simulated/floor/plating, /area/security/main) -"arl" = ( +"aro" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9152,7 +9195,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"arm" = ( +"arp" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -9168,7 +9211,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arn" = ( +"arq" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -9188,7 +9231,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aro" = ( +"arr" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9202,7 +9245,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arp" = ( +"ars" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9212,7 +9255,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"arq" = ( +"art" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9226,7 +9269,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"arr" = ( +"aru" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -9244,7 +9287,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ars" = ( +"arv" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9261,7 +9304,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"art" = ( +"arw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -9279,7 +9322,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"aru" = ( +"arx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -9298,7 +9341,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arv" = ( +"ary" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -9321,7 +9364,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arw" = ( +"arz" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -9329,12 +9372,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arx" = ( +"arA" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"ary" = ( +"arB" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -9349,13 +9392,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arz" = ( +"arC" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"arA" = ( +"arD" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9383,7 +9426,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"arB" = ( +"arE" = ( /obj/machinery/computer/security/engineering, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -9395,7 +9438,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arC" = ( +"arF" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 @@ -9406,13 +9449,13 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arD" = ( +"arG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/bridge) -"arE" = ( +"arH" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9421,7 +9464,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/bridge) -"arF" = ( +"arI" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -9431,7 +9474,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/bridge) -"arG" = ( +"arJ" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/industrial/warning, /obj/structure/table/reinforced, @@ -9440,7 +9483,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arH" = ( +"arK" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -9450,7 +9493,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arI" = ( +"arL" = ( /obj/machinery/computer/med_data, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -9461,7 +9504,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"arJ" = ( +"arM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9480,20 +9523,20 @@ }, /turf/simulated/floor/plating, /area/bridge) -"arK" = ( +"arN" = ( /turf/simulated/wall/r_wall, /area/mine/unexplored) -"arL" = ( +"arO" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arM" = ( +"arP" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arN" = ( +"arQ" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -9504,7 +9547,7 @@ /obj/structure/cable/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arO" = ( +"arR" = ( /obj/machinery/power/smes/buildable{ charge = 2e+006; input_attempt = 1; @@ -9519,7 +9562,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"arP" = ( +"arS" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "SMES Access"; req_access = list(11) @@ -9531,7 +9574,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arQ" = ( +"arT" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -9541,7 +9584,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"arR" = ( +"arU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -9557,13 +9600,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arS" = ( +"arV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"arT" = ( +"arW" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Hard Storage"; req_access = list(11) @@ -9578,7 +9621,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/storage) -"arU" = ( +"arX" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Hard Storage"; req_access = list(11) @@ -9586,7 +9629,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/storage) -"arV" = ( +"arY" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -9599,7 +9642,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"arW" = ( +"arZ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -9612,12 +9655,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"arX" = ( +"asa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"arY" = ( +"asb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Storage"; @@ -9628,11 +9671,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"arZ" = ( +"asc" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"asa" = ( +"asd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Storage"; @@ -9640,7 +9683,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) -"asb" = ( +"ase" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -9659,10 +9702,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/locker_room) -"asc" = ( +"asf" = ( /turf/simulated/wall/r_wall, /area/engineering/locker_room) -"asd" = ( +"asg" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -9676,7 +9719,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ase" = ( +"ash" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -9691,7 +9734,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"asf" = ( +"asi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -9707,7 +9750,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"asg" = ( +"asj" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -9727,7 +9770,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ash" = ( +"ask" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/extinguisher_cabinet{ @@ -9740,7 +9783,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asi" = ( +"asl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -9748,7 +9791,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asj" = ( +"asm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9756,7 +9799,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ask" = ( +"asn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 4; @@ -9765,7 +9808,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asl" = ( +"aso" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -9777,14 +9820,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"asm" = ( +"asp" = ( /obj/machinery/newscaster{ pixel_x = -30; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/security/brig) -"asn" = ( +"asq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9797,18 +9840,18 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"aso" = ( +"asr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/security/brig) -"asp" = ( +"ass" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"asq" = ( +"ast" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -9824,7 +9867,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"asr" = ( +"asu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -9843,7 +9886,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ass" = ( +"asv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9861,7 +9904,7 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/security/brig) -"ast" = ( +"asw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9885,7 +9928,7 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/security/brig) -"asu" = ( +"asx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -9903,7 +9946,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asv" = ( +"asy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9925,7 +9968,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asw" = ( +"asz" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9952,7 +9995,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asx" = ( +"asA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9976,7 +10019,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asy" = ( +"asB" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9997,70 +10040,6 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"asA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"asB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) "asC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -10068,6 +10047,11 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10082,6 +10066,65 @@ /turf/simulated/floor/tiled, /area/security/brig) "asD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"asE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"asF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/brig) +"asG" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10107,7 +10150,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asE" = ( +"asH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10127,7 +10170,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asF" = ( +"asI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10155,7 +10198,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asG" = ( +"asJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10180,7 +10223,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asH" = ( +"asK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10202,7 +10245,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asI" = ( +"asL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -10225,7 +10268,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asJ" = ( +"asM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -10242,7 +10285,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"asK" = ( +"asN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -10252,10 +10295,10 @@ /obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/floor/tiled, /area/security/brig) -"asL" = ( +"asO" = ( /turf/simulated/wall, /area/lawoffice) -"asM" = ( +"asP" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10267,12 +10310,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asN" = ( +"asQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asO" = ( +"asR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10286,7 +10329,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asP" = ( +"asS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -10295,7 +10338,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asQ" = ( +"asT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -10309,7 +10352,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/security_starboard) -"asR" = ( +"asU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10338,7 +10381,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"asS" = ( +"asV" = ( /obj/machinery/computer/power_monitor, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -10355,7 +10398,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asT" = ( +"asW" = ( /obj/effect/floor_decal/corner/yellow/full, /obj/structure/cable/green{ d1 = 4; @@ -10364,7 +10407,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asU" = ( +"asX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10377,7 +10420,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asV" = ( +"asY" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -10387,7 +10430,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asW" = ( +"asZ" = ( /obj/machinery/computer/message_monitor, /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; @@ -10395,7 +10438,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asX" = ( +"ata" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/item/modular_computer/console/preset/command, @@ -10405,7 +10448,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"asY" = ( +"atb" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -10413,7 +10456,7 @@ /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/tiled, /area/bridge) -"asZ" = ( +"atc" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10422,7 +10465,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ata" = ( +"atd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10435,7 +10478,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atb" = ( +"ate" = ( /obj/effect/floor_decal/corner/lime/full{ dir = 4 }, @@ -10446,7 +10489,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atc" = ( +"atf" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -10462,7 +10505,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"atd" = ( +"atg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10491,13 +10534,13 @@ }, /turf/simulated/floor/plating, /area/bridge) -"ate" = ( +"ath" = ( /obj/structure/sign/securearea{ name = "\improper DANGER: REACTOR VENT SHAFT" }, /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"atf" = ( +"ati" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10519,7 +10562,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atg" = ( +"atj" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10537,7 +10580,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ath" = ( +"atk" = ( /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -10559,11 +10602,11 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ati" = ( +"atl" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall/r_wall, /area/engineering/engine_room) -"atj" = ( +"atm" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -10575,7 +10618,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atk" = ( +"atn" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -10583,13 +10626,13 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atl" = ( +"ato" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"atm" = ( +"atp" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10610,7 +10653,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"atn" = ( +"atq" = ( /obj/machinery/computer/general_air_control/supermatter_core{ frequency = 1438; input_tag = "cooling_in"; @@ -10625,7 +10668,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ato" = ( +"atr" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -10642,7 +10685,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atp" = ( +"ats" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -10652,7 +10695,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atq" = ( +"att" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10660,7 +10703,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atr" = ( +"atu" = ( /obj/structure/table/reinforced, /obj/machinery/ringer{ department = "Engineering"; @@ -10671,7 +10714,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ats" = ( +"atv" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -10688,7 +10731,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"att" = ( +"atw" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10701,7 +10744,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atu" = ( +"atx" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -10711,7 +10754,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atv" = ( +"aty" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10724,20 +10767,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atw" = ( +"atz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atx" = ( +"atA" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aty" = ( +"atB" = ( /obj/machinery/light{ dir = 1 }, @@ -10749,24 +10792,24 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atz" = ( +"atC" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"atA" = ( +"atD" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/monitoring) -"atB" = ( +"atE" = ( /obj/machinery/computer/security/engineering, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atC" = ( +"atF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atD" = ( +"atG" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -10789,7 +10832,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atE" = ( +"atH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -10801,7 +10844,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"atF" = ( +"atI" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -10817,7 +10860,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"atG" = ( +"atJ" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -10825,7 +10868,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atH" = ( +"atK" = ( /obj/item/device/radio/intercom{ broadcasting = 0; frequency = 1475; @@ -10845,7 +10888,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atI" = ( +"atL" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/industrial/outline/yellow, @@ -10854,7 +10897,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atJ" = ( +"atM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -10871,7 +10914,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"atK" = ( +"atN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10883,7 +10926,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atL" = ( +"atO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10897,7 +10940,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atM" = ( +"atP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10906,7 +10949,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atN" = ( +"atQ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_personal, /obj/item/device/flashlight, @@ -10924,11 +10967,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"atO" = ( +"atR" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/engineering) -"atP" = ( +"atS" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -10938,7 +10981,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"atQ" = ( +"atT" = ( /obj/machinery/hologram/holopad, /obj/machinery/light, /obj/machinery/camera/network/security{ @@ -10948,7 +10991,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atR" = ( +"atU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -10958,27 +11001,27 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atS" = ( +"atV" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atT" = ( +"atW" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atU" = ( +"atX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atV" = ( +"atY" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"atW" = ( +"atZ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -10991,14 +11034,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"atX" = ( +"aua" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/security/brig) -"atY" = ( +"aub" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -11019,7 +11062,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"atZ" = ( +"auc" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -11038,11 +11081,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aua" = ( +"aud" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/security/brig) -"aub" = ( +"aue" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -11056,7 +11099,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auc" = ( +"auf" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11072,7 +11115,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aud" = ( +"aug" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11088,7 +11131,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aue" = ( +"auh" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11098,7 +11141,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/security/brig) -"auf" = ( +"aui" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11108,7 +11151,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aug" = ( +"auj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -11117,7 +11160,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auh" = ( +"auk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11130,7 +11173,7 @@ /obj/effect/floor_decal/corner/blue, /turf/simulated/floor/tiled, /area/security/brig) -"aui" = ( +"aul" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11139,7 +11182,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auj" = ( +"aum" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -11149,20 +11192,20 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auk" = ( +"aun" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"aul" = ( +"auo" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"aum" = ( +"aup" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11171,7 +11214,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aun" = ( +"auq" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11182,12 +11225,12 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auo" = ( +"aur" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aup" = ( +"aus" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -11204,7 +11247,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"auq" = ( +"aut" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11213,7 +11256,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aur" = ( +"auu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -11227,7 +11270,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aus" = ( +"auv" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -11239,30 +11282,30 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aut" = ( +"auw" = ( /turf/simulated/floor/carpet, /area/lawoffice) -"auu" = ( +"aux" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/carpet, /area/lawoffice) -"auv" = ( +"auy" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/wood, /area/lawoffice) -"auw" = ( +"auz" = ( /obj/machinery/light_switch{ pixel_x = 0; pixel_y = 24 }, /turf/simulated/floor/wood, /area/lawoffice) -"aux" = ( +"auA" = ( /obj/structure/closet/lawcloset, /obj/item/weapon/storage/briefcase{ pixel_x = 3; @@ -11278,10 +11321,10 @@ /obj/item/device/flash, /turf/simulated/floor/wood, /area/lawoffice) -"auy" = ( +"auB" = ( /turf/simulated/wall, /area/hallway/primary/starboard) -"auz" = ( +"auC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -11298,7 +11341,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"auA" = ( +"auD" = ( /obj/machinery/light{ dir = 4 }, @@ -11307,10 +11350,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"auB" = ( +"auE" = ( /turf/simulated/wall, /area/bridge) -"auC" = ( +"auF" = ( /obj/structure/table/reinforced, /obj/machinery/alarm{ dir = 4; @@ -11339,7 +11382,7 @@ /obj/item/device/taperecorder, /turf/simulated/floor/tiled, /area/bridge) -"auD" = ( +"auG" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -11348,7 +11391,7 @@ /obj/machinery/case_button/shuttle, /turf/simulated/floor/tiled, /area/bridge) -"auE" = ( +"auH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/bed/chair/office/bridge{ @@ -11357,7 +11400,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auF" = ( +"auI" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ id = "bridge blast"; @@ -11372,7 +11415,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auG" = ( +"auJ" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ dir = 4; @@ -11400,7 +11443,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"auH" = ( +"auK" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -11413,10 +11456,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/bridge) -"auI" = ( +"auL" = ( /turf/simulated/open, /area/engineering/engine_waste) -"auJ" = ( +"auM" = ( /obj/machinery/door/blast/regular{ dir = 1; icon_state = "pdoor1"; @@ -11426,12 +11469,12 @@ }, /turf/simulated/floor/airless, /area/engineering/engine_waste) -"auK" = ( +"auN" = ( /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/mine/unexplored) -"auL" = ( +"auO" = ( /obj/machinery/camera/network/engine{ c_tag = "Engine Core West"; dir = 4 @@ -11441,13 +11484,13 @@ icon_state = "plating" }, /area/engineering/engine_room) -"auM" = ( +"auP" = ( /turf/simulated/floor/greengrid/nitrogen{ icon = 'icons/turf/flooring/plating.dmi'; icon_state = "plating" }, /area/engineering/engine_room) -"auN" = ( +"auQ" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 4; frequency = 1438; @@ -11464,7 +11507,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"auO" = ( +"auR" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_access_hatch"; @@ -11477,7 +11520,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auP" = ( +"auS" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -11488,20 +11531,20 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auQ" = ( +"auT" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auR" = ( +"auU" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/plating, /area/engineering/engine_room) -"auS" = ( +"auV" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11519,12 +11562,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"auT" = ( +"auW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auU" = ( +"auX" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -11539,15 +11582,15 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auV" = ( +"auY" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auW" = ( +"auZ" = ( /obj/structure/table/reinforced, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auX" = ( +"ava" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -11562,7 +11605,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"auY" = ( +"avb" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -11580,7 +11623,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"auZ" = ( +"avc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11590,7 +11633,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ava" = ( +"avd" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11598,7 +11641,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avb" = ( +"ave" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11613,7 +11656,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avc" = ( +"avf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11625,7 +11668,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avd" = ( +"avg" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -11641,7 +11684,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ave" = ( +"avh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11660,7 +11703,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avf" = ( +"avi" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11671,7 +11714,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avg" = ( +"avj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -11683,7 +11726,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avh" = ( +"avk" = ( /obj/structure/table/standard, /obj/structure/cable{ d1 = 2; @@ -11702,7 +11745,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"avi" = ( +"avl" = ( /obj/machinery/computer/atmos_alert, /obj/machinery/alarm{ dir = 4; @@ -11712,13 +11755,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avj" = ( +"avm" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avk" = ( +"avn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -11727,7 +11770,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avl" = ( +"avo" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -11741,7 +11784,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"avm" = ( +"avp" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -11757,7 +11800,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"avn" = ( +"avq" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -11773,7 +11816,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avo" = ( +"avr" = ( /obj/machinery/meter, /obj/structure/cable/green{ d1 = 4; @@ -11786,7 +11829,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avp" = ( +"avs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11801,7 +11844,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avq" = ( +"avt" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -11820,7 +11863,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avr" = ( +"avu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11833,7 +11876,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avs" = ( +"avv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11841,7 +11884,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avt" = ( +"avw" = ( /obj/structure/closet/medical_wall{ pixel_x = 32 }, @@ -11857,7 +11900,7 @@ /obj/item/weapon/reagent_containers/pill/antitox, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"avu" = ( +"avx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -11872,7 +11915,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avv" = ( +"avy" = ( /obj/structure/table/standard, /obj/machinery/recharger, /obj/structure/sign/nosmoking_2{ @@ -11885,25 +11928,25 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avw" = ( +"avz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avx" = ( +"avA" = ( /obj/machinery/flasher/portable, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"avy" = ( +"avB" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ dir = 10 }, /turf/simulated/floor/tiled, /area/security/brig) -"avz" = ( +"avC" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -11924,7 +11967,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avA" = ( +"avD" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -11941,7 +11984,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avB" = ( +"avE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -11958,11 +12001,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"avC" = ( +"avF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"avD" = ( +"avG" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -11983,7 +12026,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avE" = ( +"avH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -11998,7 +12041,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/brig) -"avF" = ( +"avI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12011,18 +12054,18 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avG" = ( +"avJ" = ( /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"avH" = ( +"avK" = ( /obj/effect/floor_decal/corner/blue/diagonal, /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/brig) -"avI" = ( +"avL" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -12033,7 +12076,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/brig) -"avJ" = ( +"avM" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -12051,10 +12094,10 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"avK" = ( +"avN" = ( /turf/simulated/wall, /area/security/prison) -"avL" = ( +"avO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = "prisonexit"; @@ -12070,7 +12113,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"avM" = ( +"avP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -12094,7 +12137,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"avN" = ( +"avQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ id = "Cell 1"; @@ -12114,7 +12157,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"avO" = ( +"avR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ id = "Cell 2"; @@ -12134,10 +12177,10 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"avP" = ( +"avS" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/security/brig) -"avQ" = ( +"avT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12150,7 +12193,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"avR" = ( +"avU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12164,7 +12207,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"avS" = ( +"avV" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -12172,7 +12215,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"avT" = ( +"avW" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -12183,7 +12226,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"avU" = ( +"avX" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen{ @@ -12197,23 +12240,23 @@ /obj/item/weapon/pen/red, /turf/simulated/floor/carpet, /area/lawoffice) -"avV" = ( +"avY" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 }, /turf/simulated/floor/carpet, /area/lawoffice) -"avW" = ( +"avZ" = ( /turf/simulated/floor/wood, /area/lawoffice) -"avX" = ( +"awa" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/wood, /area/lawoffice) -"avY" = ( +"awb" = ( /obj/structure/table/wood, /obj/item/weapon/folder/red{ desc = "A red folder. You can make out a small scribble in the top right corner. It reads Top Secret."; @@ -12224,7 +12267,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"avZ" = ( +"awc" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -12241,11 +12284,11 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"awa" = ( +"awd" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awb" = ( +"awe" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -12257,18 +12300,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awc" = ( +"awf" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"awd" = ( +"awg" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"awe" = ( +"awh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -12280,14 +12323,14 @@ /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled, /area/bridge) -"awf" = ( +"awi" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"awg" = ( +"awj" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -12298,14 +12341,14 @@ /obj/structure/banner, /turf/simulated/floor/tiled, /area/bridge) -"awh" = ( +"awk" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"awi" = ( +"awl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -12313,7 +12356,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"awj" = ( +"awm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12323,7 +12366,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"awk" = ( +"awn" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12338,14 +12381,14 @@ /obj/structure/banner, /turf/simulated/floor/tiled, /area/bridge) -"awl" = ( +"awo" = ( /obj/effect/floor_decal/corner/purple/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"awm" = ( +"awp" = ( /obj/machinery/computer/mecha, /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; @@ -12357,13 +12400,13 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"awn" = ( +"awq" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/open, /area/engineering/engine_waste) -"awo" = ( +"awr" = ( /obj/machinery/door/blast/regular{ dir = 4; icon_state = "pdoor1"; @@ -12380,10 +12423,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/engineering/engine_room) -"awp" = ( +"aws" = ( /turf/simulated/floor/greengrid/nitrogen, /area/engineering/engine_room) -"awq" = ( +"awt" = ( /obj/machinery/mass_driver{ icon_state = "mass_driver"; dir = 8; @@ -12394,7 +12437,7 @@ }, /turf/simulated/floor/greengrid/nitrogen, /area/engineering/engine_room) -"awr" = ( +"awu" = ( /obj/machinery/air_sensor{ frequency = 1438; id_tag = "engine_sensor"; @@ -12405,7 +12448,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"aws" = ( +"awv" = ( /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 4 @@ -12431,7 +12474,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awt" = ( +"aww" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning, /obj/effect/floor_decal/industrial/warning{ @@ -12439,7 +12482,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awu" = ( +"awx" = ( /obj/machinery/power/emitter{ anchored = 1; dir = 8; @@ -12457,14 +12500,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awv" = ( +"awy" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/cable/orange{ icon_state = "4-8" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aww" = ( +"awz" = ( /obj/structure/cable/orange{ icon_state = "4-8" }, @@ -12475,7 +12518,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awx" = ( +"awA" = ( /obj/structure/cable/orange{ icon_state = "1-8" }, @@ -12496,7 +12539,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"awy" = ( +"awB" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -12520,7 +12563,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"awz" = ( +"awC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12535,7 +12578,7 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awA" = ( +"awD" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine control room blast doors."; @@ -12578,7 +12621,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awB" = ( +"awE" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12590,7 +12633,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awC" = ( +"awF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12609,7 +12652,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awD" = ( +"awG" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12623,7 +12666,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awE" = ( +"awH" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Monitoring Room"; req_access = list(11) @@ -12645,7 +12688,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awF" = ( +"awI" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12669,7 +12712,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awG" = ( +"awJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12684,7 +12727,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awH" = ( +"awK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12699,7 +12742,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awI" = ( +"awL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12713,7 +12756,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awJ" = ( +"awM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12731,7 +12774,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awK" = ( +"awN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12753,7 +12796,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awL" = ( +"awO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12771,7 +12814,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awM" = ( +"awP" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -12785,7 +12828,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awN" = ( +"awQ" = ( /obj/structure/table/rack, /obj/item/weapon/pickaxe{ pixel_x = 8 @@ -12810,18 +12853,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"awO" = ( +"awR" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awP" = ( +"awS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awQ" = ( +"awT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12831,7 +12874,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awR" = ( +"awU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12848,7 +12891,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"awS" = ( +"awV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12864,7 +12907,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"awT" = ( +"awW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12880,7 +12923,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awU" = ( +"awX" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 @@ -12890,7 +12933,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awV" = ( +"awY" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 10 @@ -12900,7 +12943,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awW" = ( +"awZ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -12920,7 +12963,7 @@ }, /turf/simulated/floor/plating, /area/engineering/locker_room) -"awX" = ( +"axa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/light_switch{ pixel_x = 0; @@ -12928,32 +12971,32 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awY" = ( +"axb" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"awZ" = ( +"axc" = ( /obj/structure/table/standard, /obj/item/device/floor_painter, /obj/item/clothing/head/hardhat, /obj/item/clothing/head/hardhat, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axa" = ( +"axd" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"axb" = ( +"axe" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axc" = ( +"axf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -12968,7 +13011,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axd" = ( +"axg" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -12977,7 +13020,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axe" = ( +"axh" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -12987,10 +13030,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"axf" = ( +"axi" = ( /turf/simulated/wall, /area/security/armoury) -"axg" = ( +"axj" = ( /obj/machinery/computer/prisoner, /obj/machinery/requests_console{ department = "Security"; @@ -12999,7 +13042,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axh" = ( +"axk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -13030,7 +13073,7 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axi" = ( +"axl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -13046,7 +13089,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axj" = ( +"axm" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/laserproof{ pixel_x = -2; @@ -13074,7 +13117,7 @@ /obj/item/clothing/head/helmet/ablative, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axk" = ( +"axn" = ( /obj/machinery/flasher/portable, /obj/machinery/light/small/emergency{ icon_state = "bulb1"; @@ -13083,7 +13126,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"axl" = ( +"axo" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -13098,7 +13141,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axm" = ( +"axp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -13112,7 +13155,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axn" = ( +"axq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13131,7 +13174,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axo" = ( +"axr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Security Processing"; @@ -13145,14 +13188,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"axp" = ( +"axs" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"axq" = ( +"axt" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -13161,7 +13204,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/security/brig) -"axr" = ( +"axu" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13178,7 +13221,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axs" = ( +"axv" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13197,7 +13240,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axt" = ( +"axw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13210,7 +13253,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axu" = ( +"axx" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -13221,7 +13264,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"axv" = ( +"axy" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13234,7 +13277,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/brig) -"axw" = ( +"axz" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -13254,7 +13297,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/prison) -"axx" = ( +"axA" = ( /obj/machinery/flasher{ id = "permentryflash"; name = "Floor mounted flash"; @@ -13271,7 +13314,7 @@ /obj/structure/closet/walllocker/emerglocker/north, /turf/simulated/floor/tiled, /area/security/prison) -"axy" = ( +"axB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green, @@ -13290,7 +13333,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axz" = ( +"axC" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -13302,7 +13345,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axA" = ( +"axD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -13311,7 +13354,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axB" = ( +"axE" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -13325,7 +13368,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axC" = ( +"axF" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -13339,7 +13382,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"axD" = ( +"axG" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -13347,10 +13390,10 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"axE" = ( +"axH" = ( /turf/simulated/floor/plating, /area/security/brig) -"axF" = ( +"axI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13360,7 +13403,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"axG" = ( +"axJ" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/small{ dir = 8 @@ -13373,13 +13416,13 @@ /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"axH" = ( +"axK" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"axI" = ( +"axL" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -13390,23 +13433,23 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"axJ" = ( +"axM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/wood, /area/lawoffice) -"axK" = ( +"axN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/lawoffice) -"axL" = ( +"axO" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/lawoffice) -"axM" = ( +"axP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -13419,7 +13462,7 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"axN" = ( +"axQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -13428,7 +13471,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axO" = ( +"axR" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13442,10 +13485,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axP" = ( +"axS" = ( /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"axQ" = ( +"axT" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -13456,10 +13499,10 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"axR" = ( +"axU" = ( /turf/simulated/open, /area/turbolift/vault_station) -"axS" = ( +"axV" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13468,7 +13511,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"axT" = ( +"axW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -13496,7 +13539,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"axU" = ( +"axX" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -13508,7 +13551,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"axV" = ( +"axY" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -13519,26 +13562,26 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"axW" = ( +"axZ" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 8 }, /area/bridge) -"axX" = ( +"aya" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"axY" = ( +"ayb" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 4 }, /area/bridge) -"axZ" = ( +"ayc" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 @@ -13549,7 +13592,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aya" = ( +"ayd" = ( /obj/machinery/computer/robotics, /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; @@ -13561,7 +13604,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"ayb" = ( +"aye" = ( /obj/machinery/atmospherics/unary/vent_pump/engine{ dir = 4; external_pressure_bound = 100; @@ -13580,7 +13623,7 @@ icon_state = "plating" }, /area/engineering/engine_room) -"ayc" = ( +"ayf" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = "engine_access_hatch"; @@ -13592,7 +13635,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayd" = ( +"ayg" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 10 @@ -13603,14 +13646,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aye" = ( +"ayh" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ icon_state = "intact"; dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayf" = ( +"ayi" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -13626,7 +13669,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayg" = ( +"ayj" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, @@ -13638,7 +13681,7 @@ /obj/structure/cable/orange, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ayh" = ( +"ayk" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -13648,18 +13691,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayi" = ( +"ayl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayj" = ( +"aym" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayk" = ( +"ayn" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -13679,7 +13722,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"ayl" = ( +"ayo" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -13704,7 +13747,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aym" = ( +"ayp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -13717,13 +13760,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayn" = ( +"ayq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayo" = ( +"ayr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -13732,7 +13775,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayp" = ( +"ays" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13742,7 +13785,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayq" = ( +"ayt" = ( /obj/machinery/door/firedoor{ dir = 1; name = "Engineering Firelock" @@ -13756,14 +13799,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayr" = ( +"ayu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ays" = ( +"ayv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -13772,7 +13815,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayt" = ( +"ayw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13782,7 +13825,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayu" = ( +"ayx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -13792,7 +13835,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayv" = ( +"ayy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13808,7 +13851,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayw" = ( +"ayz" = ( /obj/item/weapon/shovel{ pixel_x = 8 }, @@ -13825,7 +13868,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"ayx" = ( +"ayA" = ( /obj/machinery/computer/general_air_control{ frequency = 1441; name = "Tank Monitor"; @@ -13840,7 +13883,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayy" = ( +"ayB" = ( /obj/machinery/computer/general_air_control{ frequency = 1441; level = 3; @@ -13849,7 +13892,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayz" = ( +"ayC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13863,7 +13906,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"ayA" = ( +"ayD" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -13876,7 +13919,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/engineering/locker_room) -"ayB" = ( +"ayE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13891,7 +13934,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"ayC" = ( +"ayF" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/machinery/atmospherics/portables_connector{ dir = 1 @@ -13899,17 +13942,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"ayD" = ( +"ayG" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/engineering) -"ayE" = ( +"ayH" = ( /turf/simulated/wall, /area/maintenance/substation/engineering) -"ayF" = ( +"ayI" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayG" = ( +"ayJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -13919,7 +13962,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayH" = ( +"ayK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -13928,7 +13971,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayI" = ( +"ayL" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -13937,13 +13980,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"ayJ" = ( +"ayM" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -24 }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayK" = ( +"ayN" = ( /obj/machinery/door/window/brigdoor/southright{ dir = 4; icon_state = "rightsecure"; @@ -13952,7 +13995,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayL" = ( +"ayO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -13967,7 +14010,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayM" = ( +"ayP" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/bulletproof{ pixel_x = -2; @@ -13992,7 +14035,7 @@ /obj/item/clothing/head/helmet/ballistic, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"ayN" = ( +"ayQ" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14009,7 +14052,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayO" = ( +"ayR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -14022,7 +14065,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayP" = ( +"ayS" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -14046,26 +14089,26 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayQ" = ( +"ayT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"ayR" = ( +"ayU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ayS" = ( +"ayV" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/brig) -"ayT" = ( +"ayW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14083,7 +14126,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"ayU" = ( +"ayX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14092,7 +14135,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"ayV" = ( +"ayY" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -14101,13 +14144,13 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled, /area/security/brig) -"ayW" = ( +"ayZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/security/brig) -"ayX" = ( +"aza" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -14120,12 +14163,12 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/prison) -"ayY" = ( +"azb" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/security/prison) -"ayZ" = ( +"azc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14135,17 +14178,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aza" = ( +"azd" = ( /obj/structure/toilet{ dir = 4; pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"azb" = ( +"aze" = ( /turf/simulated/floor/tiled, /area/security/prison) -"azc" = ( +"azf" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; name = "Cell 1 Locker" @@ -14155,7 +14198,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"azd" = ( +"azg" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; name = "Cell 2 Locker" @@ -14165,15 +14208,15 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aze" = ( +"azh" = ( /obj/machinery/recharge_station, /turf/simulated/floor/greengrid, /area/security/brig) -"azf" = ( +"azi" = ( /obj/machinery/computer/area_atmos, /turf/simulated/floor/plating, /area/security/brig) -"azg" = ( +"azj" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14184,7 +14227,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/security/brig) -"azh" = ( +"azk" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/light/small{ dir = 8 @@ -14199,7 +14242,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azi" = ( +"azl" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /obj/structure/window/reinforced{ @@ -14207,7 +14250,7 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azj" = ( +"azm" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/window/reinforced{ dir = 1 @@ -14218,12 +14261,12 @@ }, /turf/simulated/floor/carpet, /area/lawoffice) -"azk" = ( +"azn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/lawoffice) -"azl" = ( +"azo" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_x = 3; @@ -14236,13 +14279,13 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"azm" = ( +"azp" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azn" = ( +"azq" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14254,11 +14297,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azo" = ( +"azr" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"azp" = ( +"azs" = ( /obj/machinery/computer/prisoner, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -14275,7 +14318,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azq" = ( +"azt" = ( /obj/effect/floor_decal/corner/blue/full, /obj/structure/cable/green{ d1 = 4; @@ -14289,7 +14332,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azr" = ( +"azu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -14307,7 +14350,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azs" = ( +"azv" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 6; pixel_y = -32 @@ -14322,7 +14365,7 @@ dir = 8 }, /area/bridge) -"azt" = ( +"azw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14331,7 +14374,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) -"azu" = ( +"azx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -14347,7 +14390,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azv" = ( +"azy" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Bridge"; @@ -14362,7 +14405,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azw" = ( +"azz" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -14376,7 +14419,7 @@ dir = 4 }, /area/bridge) -"azx" = ( +"azA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -14392,7 +14435,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azy" = ( +"azB" = ( /obj/effect/floor_decal/corner/purple/full{ dir = 4 }, @@ -14403,7 +14446,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azz" = ( +"azC" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 @@ -14420,11 +14463,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"azA" = ( +"azD" = ( /obj/structure/sign/vacuum, /turf/simulated/wall/r_wall, /area/engineering/engine_waste) -"azB" = ( +"azE" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for the engine charging port."; @@ -14454,12 +14497,12 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azC" = ( +"azF" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azD" = ( +"azG" = ( /obj/structure/cable/orange{ icon_state = "1-2" }, @@ -14468,7 +14511,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"azE" = ( +"azH" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -14487,12 +14530,12 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azF" = ( +"azI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/computer/security/engineering, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azG" = ( +"azJ" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 @@ -14500,7 +14543,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azH" = ( +"azK" = ( /obj/item/device/radio/intercom{ layer = 4; name = "Station Intercom (General)"; @@ -14514,7 +14557,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azI" = ( +"azL" = ( /obj/machinery/newscaster{ layer = 3.3; pixel_x = 0; @@ -14522,7 +14565,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azJ" = ( +"azM" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light_switch{ @@ -14531,7 +14574,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azK" = ( +"azN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -14544,7 +14587,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azL" = ( +"azO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14564,7 +14607,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"azM" = ( +"azP" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; req_access = list(11); @@ -14573,7 +14616,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/engineering/storage) -"azN" = ( +"azQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14589,7 +14632,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"azO" = ( +"azR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14601,7 +14644,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"azP" = ( +"azS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -14617,7 +14660,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"azQ" = ( +"azT" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14634,7 +14677,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azR" = ( +"azU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14652,7 +14695,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"azS" = ( +"azV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -14674,7 +14717,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_monitoring) -"azT" = ( +"azW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14686,7 +14729,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) -"azU" = ( +"azX" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14698,7 +14741,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) -"azV" = ( +"azY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics Monitoring Room"; @@ -14713,11 +14756,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"azW" = ( +"azZ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/engineering/locker_room) -"azX" = ( +"aAa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -14730,7 +14773,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/locker_room) -"azY" = ( +"aAb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -14742,7 +14785,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"azZ" = ( +"aAc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -14754,10 +14797,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/locker_room) -"aAa" = ( +"aAd" = ( /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAb" = ( +"aAe" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -14781,7 +14824,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAc" = ( +"aAf" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Engineering" @@ -14796,13 +14839,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAd" = ( +"aAg" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Engineering Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aAe" = ( +"aAh" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -14811,11 +14854,11 @@ }, /turf/simulated/wall, /area/maintenance/substation/engineering) -"aAf" = ( +"aAi" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/wall, /area/maintenance/engineering) -"aAg" = ( +"aAj" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -14826,7 +14869,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aAh" = ( +"aAk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -14836,7 +14879,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAi" = ( +"aAl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14846,7 +14889,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAj" = ( +"aAm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14859,7 +14902,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAk" = ( +"aAn" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/flashbangs{ pixel_x = 2; @@ -14869,7 +14912,7 @@ /obj/item/weapon/storage/box/firingpins, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aAl" = ( +"aAo" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -14881,7 +14924,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/brig) -"aAm" = ( +"aAp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -14891,7 +14934,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAn" = ( +"aAq" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -14907,7 +14950,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAo" = ( +"aAr" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/evidence, /obj/item/weapon/hand_labeler{ @@ -14920,7 +14963,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAp" = ( +"aAs" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -14928,7 +14971,7 @@ /obj/machinery/computer/secure_data, /turf/simulated/floor/tiled, /area/security/brig) -"aAq" = ( +"aAt" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -14939,7 +14982,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aAr" = ( +"aAu" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -14951,7 +14994,7 @@ /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aAs" = ( +"aAv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14969,10 +15012,10 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAt" = ( +"aAw" = ( /turf/simulated/wall, /area/security/warden) -"aAu" = ( +"aAx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; @@ -14990,7 +15033,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aAv" = ( +"aAy" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -15009,7 +15052,7 @@ }, /turf/simulated/floor/plating, /area/security/warden) -"aAw" = ( +"aAz" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced/steel, /obj/item/weapon/paper_bin{ @@ -15026,11 +15069,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/warden) -"aAx" = ( +"aAA" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/security/warden) -"aAy" = ( +"aAB" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "prisonentry"; name = "Brig Entry"; @@ -15046,7 +15089,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAz" = ( +"aAC" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15065,7 +15108,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/prison) -"aAA" = ( +"aAD" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "Cell 1"; @@ -15075,7 +15118,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAB" = ( +"aAE" = ( /obj/machinery/door/blast/regular{ dir = 1; id = "Cell 2"; @@ -15085,7 +15128,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aAC" = ( +"aAF" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -15103,7 +15146,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAD" = ( +"aAG" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -15115,11 +15158,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aAE" = ( +"aAH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aAF" = ( +"aAI" = ( /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine{ anchored = 0; @@ -15127,7 +15170,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aAG" = ( +"aAJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -15143,7 +15186,7 @@ }, /turf/simulated/floor/plating, /area/lawoffice) -"aAH" = ( +"aAK" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -15152,7 +15195,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAI" = ( +"aAL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15166,23 +15209,23 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAJ" = ( +"aAM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aAK" = ( +"aAN" = ( /turf/simulated/wall/r_wall, /area/teleporter) -"aAL" = ( +"aAO" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(17) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/teleporter) -"aAM" = ( +"aAP" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15195,7 +15238,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"aAN" = ( +"aAQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -15208,7 +15251,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"aAO" = ( +"aAR" = ( /obj/machinery/door/airlock/glass_command{ id_tag = ""; name = "Bridge"; @@ -15225,10 +15268,10 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aAP" = ( +"aAS" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/captain) -"aAQ" = ( +"aAT" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -15253,7 +15296,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aAR" = ( +"aAU" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -15275,7 +15318,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aAS" = ( +"aAV" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -15301,7 +15344,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aAT" = ( +"aAW" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 6 }, @@ -15311,7 +15354,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAU" = ( +"aAX" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 }, @@ -15321,7 +15364,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAV" = ( +"aAY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ icon_state = "map"; dir = 1 @@ -15332,7 +15375,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAW" = ( +"aAZ" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 9 }, @@ -15342,7 +15385,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAX" = ( +"aBa" = ( /obj/structure/cable/orange, /obj/machinery/power/apc/super/critical{ dir = 4; @@ -15351,7 +15394,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aAY" = ( +"aBb" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15370,7 +15413,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aAZ" = ( +"aBc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -15382,7 +15425,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aBa" = ( +"aBd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -15401,7 +15444,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aBb" = ( +"aBe" = ( /obj/item/stack/material/steel{ amount = 50 }, @@ -15415,23 +15458,23 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBc" = ( +"aBf" = ( /turf/simulated/floor/tiled, /area/engineering/storage) -"aBd" = ( +"aBg" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_welding, /obj/item/clothing/glasses/welding, /obj/item/clothing/glasses/welding, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBe" = ( +"aBh" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/engineering_electrical, /obj/item/device/debugger, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBf" = ( +"aBi" = ( /obj/structure/table/standard, /obj/machinery/cell_charger{ pixel_y = 4 @@ -15442,12 +15485,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBg" = ( +"aBj" = ( /obj/machinery/vending/engivend, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBh" = ( +"aBk" = ( /obj/machinery/vending/tool, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -15457,7 +15500,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aBi" = ( +"aBl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 1 @@ -15471,7 +15514,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBj" = ( +"aBm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15485,7 +15528,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBk" = ( +"aBn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -15494,7 +15537,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBl" = ( +"aBo" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15505,7 +15548,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBm" = ( +"aBp" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15517,7 +15560,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBn" = ( +"aBq" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 @@ -15525,16 +15568,16 @@ /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBo" = ( +"aBr" = ( /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBp" = ( +"aBs" = ( /obj/machinery/vending/snack, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBq" = ( +"aBt" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -15551,7 +15594,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBr" = ( +"aBu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15559,7 +15602,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBs" = ( +"aBv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15570,7 +15613,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aBt" = ( +"aBw" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Substation"; req_one_access = list(11,24) @@ -15583,7 +15626,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/substation/engineering) -"aBu" = ( +"aBx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15596,7 +15639,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBv" = ( +"aBy" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d1 = 1; @@ -15610,7 +15653,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBw" = ( +"aBz" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -15621,7 +15664,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBx" = ( +"aBA" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -15635,7 +15678,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBy" = ( +"aBB" = ( /obj/machinery/door/airlock/engineering{ name = "Engineering Substation"; req_one_access = list(11,24) @@ -15648,7 +15691,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/engineering) -"aBz" = ( +"aBC" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -15663,7 +15706,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aBA" = ( +"aBD" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/southright{ @@ -15678,7 +15721,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aBB" = ( +"aBE" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ dir = 4 @@ -15693,7 +15736,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/security/armoury) -"aBC" = ( +"aBF" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -15708,7 +15751,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aBD" = ( +"aBG" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "armoury"; @@ -15718,7 +15761,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aBE" = ( +"aBH" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ @@ -15728,7 +15771,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/armoury) -"aBF" = ( +"aBI" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15748,7 +15791,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aBG" = ( +"aBJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Holding Cell"; @@ -15773,7 +15816,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aBH" = ( +"aBK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -15793,7 +15836,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aBI" = ( +"aBL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -15803,7 +15846,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aBJ" = ( +"aBM" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15817,7 +15860,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/brig) -"aBK" = ( +"aBN" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d2 = 2; @@ -15830,7 +15873,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBL" = ( +"aBO" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -15842,7 +15885,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBM" = ( +"aBP" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -15870,7 +15913,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBN" = ( +"aBQ" = ( /obj/item/modular_computer/console/preset/security, /obj/machinery/computer/security/telescreen{ name = "Armoury Cameras"; @@ -15880,7 +15923,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aBO" = ( +"aBR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -15899,7 +15942,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aBP" = ( +"aBS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -15913,7 +15956,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBQ" = ( +"aBT" = ( /obj/item/device/radio/intercom{ desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; @@ -15934,7 +15977,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBR" = ( +"aBU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15948,7 +15991,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBS" = ( +"aBV" = ( /obj/machinery/computer/arcade, /obj/structure/cable/green{ d1 = 1; @@ -15958,7 +16001,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBT" = ( +"aBW" = ( /obj/machinery/computer/arcade, /obj/machinery/light{ dir = 1 @@ -15966,7 +16009,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBU" = ( +"aBX" = ( /obj/structure/table/standard, /obj/machinery/librarycomp, /obj/structure/cable/green{ @@ -15977,7 +16020,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aBV" = ( +"aBY" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -15985,7 +16028,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBW" = ( +"aBZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15998,7 +16041,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aBX" = ( +"aCa" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -16017,20 +16060,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/prison) -"aBY" = ( +"aCb" = ( /obj/structure/toilet{ pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"aBZ" = ( +"aCc" = ( /obj/structure/sink{ pixel_y = 22 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/security/prison) -"aCa" = ( +"aCd" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -16057,7 +16100,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"aCb" = ( +"aCe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16076,45 +16119,45 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aCc" = ( +"aCf" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32 }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCd" = ( +"aCg" = ( /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCe" = ( +"aCh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/structure/window/reinforced, /turf/simulated/floor/carpet, /area/lawoffice) -"aCf" = ( +"aCi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aCg" = ( +"aCj" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/lawoffice) -"aCh" = ( +"aCk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/lawoffice) -"aCi" = ( +"aCl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ desc = "It opens and closes. Bring your relationship affairs here."; @@ -16126,13 +16169,13 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aCj" = ( +"aCm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCk" = ( +"aCn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16147,7 +16190,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCl" = ( +"aCo" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -16155,10 +16198,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aCm" = ( +"aCp" = ( /turf/simulated/floor/tiled, /area/teleporter) -"aCn" = ( +"aCq" = ( /obj/structure/table/standard, /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -16169,24 +16212,24 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aCo" = ( +"aCr" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/tiled, /area/teleporter) -"aCp" = ( +"aCs" = ( /obj/item/device/radio/beacon, /obj/machinery/camera/network/command{ c_tag = "Bridge - Teleporter" }, /turf/simulated/floor/tiled, /area/teleporter) -"aCq" = ( +"aCt" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/teleporter) -"aCr" = ( +"aCu" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -16199,19 +16242,19 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aCs" = ( +"aCv" = ( /obj/effect/decal/cleanable/cobweb2, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/teleporter) -"aCt" = ( +"aCw" = ( /obj/structure/flora/ausbushes/fernybush, /turf/simulated/floor/grass, /area/bridge) -"aCu" = ( +"aCx" = ( /turf/simulated/floor/grass, /area/bridge) -"aCv" = ( +"aCy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -16229,7 +16272,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aCw" = ( +"aCz" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -16242,7 +16285,7 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/bridge) -"aCx" = ( +"aCA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -16259,17 +16302,17 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aCy" = ( +"aCB" = ( /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge) -"aCz" = ( +"aCC" = ( /obj/structure/toilet{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aCA" = ( +"aCD" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -16286,10 +16329,10 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aCB" = ( +"aCE" = ( /turf/simulated/wall, /area/crew_quarters/captain) -"aCC" = ( +"aCF" = ( /obj/structure/table/wood, /obj/item/weapon/storage/photo_album{ pixel_y = 0 @@ -16300,7 +16343,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCD" = ( +"aCG" = ( /obj/structure/table/rack, /obj/item/weapon/tank/jetpack/oxygen, /obj/item/clothing/suit/space/void/captain, @@ -16314,14 +16357,14 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCE" = ( +"aCH" = ( /obj/structure/closet/secure_closet/captains, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCF" = ( +"aCI" = ( /obj/machinery/atm{ pixel_y = 32 }, @@ -16329,7 +16372,7 @@ /mob/living/simple_animal/corgi/fox/Chauncey, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCG" = ( +"aCJ" = ( /obj/structure/ladder/up, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'ACCESS RESTRICTED - ONLY AUTHORIZED PERSONNEL'."; @@ -16338,7 +16381,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCH" = ( +"aCK" = ( /obj/structure/table/wood, /obj/machinery/computer/skills{ icon_state = "medlaptop" @@ -16350,7 +16393,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCI" = ( +"aCL" = ( /obj/structure/table/wood, /obj/item/weapon/paper/monitorkey, /obj/structure/cable/green{ @@ -16370,7 +16413,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCJ" = ( +"aCM" = ( /obj/structure/table/wood, /obj/structure/cable/green{ d1 = 1; @@ -16385,7 +16428,7 @@ /obj/item/weapon/card/id/captains_spare, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aCK" = ( +"aCN" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -16413,7 +16456,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aCL" = ( +"aCO" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/light{ dir = 8; @@ -16426,7 +16469,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCM" = ( +"aCP" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" @@ -16434,18 +16477,18 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCN" = ( +"aCQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4; icon_state = "intact" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCO" = ( +"aCR" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCP" = ( +"aCS" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, @@ -16456,17 +16499,17 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCQ" = ( +"aCT" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aCR" = ( +"aCU" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_airlock) -"aCS" = ( +"aCV" = ( /obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; @@ -16486,7 +16529,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCT" = ( +"aCW" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -16500,7 +16543,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCU" = ( +"aCX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 }, @@ -16517,7 +16560,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCV" = ( +"aCY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -16527,7 +16570,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aCW" = ( +"aCZ" = ( /obj/structure/closet/radiation, /obj/item/clothing/glasses/meson, /obj/item/clothing/glasses/meson, @@ -16536,7 +16579,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aCX" = ( +"aDa" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -16554,7 +16597,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aCY" = ( +"aDb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16564,7 +16607,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aCZ" = ( +"aDc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -16580,7 +16623,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aDa" = ( +"aDd" = ( /obj/item/stack/material/plasteel{ amount = 10 }, @@ -16602,11 +16645,11 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDb" = ( +"aDe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDc" = ( +"aDf" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -16618,7 +16661,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aDd" = ( +"aDg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -16626,7 +16669,7 @@ /obj/structure/closet/wardrobe/engineering_yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDe" = ( +"aDh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16638,7 +16681,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDf" = ( +"aDi" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -16653,7 +16696,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDg" = ( +"aDj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -16662,7 +16705,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDh" = ( +"aDk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16676,11 +16719,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDi" = ( +"aDl" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDj" = ( +"aDm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16688,10 +16731,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDk" = ( +"aDn" = ( /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDl" = ( +"aDo" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -16707,10 +16750,10 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aDm" = ( +"aDp" = ( /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDn" = ( +"aDq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -16718,7 +16761,7 @@ }, /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDo" = ( +"aDr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "E.V.A. Maintenance"; @@ -16728,11 +16771,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aDp" = ( +"aDs" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) -"aDq" = ( +"aDt" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -16748,13 +16791,13 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDr" = ( +"aDu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"aDs" = ( +"aDv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16767,7 +16810,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDt" = ( +"aDw" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16777,14 +16820,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDu" = ( +"aDx" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/security/brig) -"aDv" = ( +"aDy" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16801,7 +16844,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDw" = ( +"aDz" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 5 @@ -16814,7 +16857,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDx" = ( +"aDA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -16832,7 +16875,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDy" = ( +"aDB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16855,7 +16898,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDz" = ( +"aDC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16865,7 +16908,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDA" = ( +"aDD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16876,7 +16919,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/security/brig) -"aDB" = ( +"aDE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 @@ -16887,7 +16930,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDC" = ( +"aDF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16900,7 +16943,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDD" = ( +"aDG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16914,7 +16957,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDE" = ( +"aDH" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" @@ -16925,7 +16968,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDF" = ( +"aDI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -16941,7 +16984,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDG" = ( +"aDJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -16957,7 +17000,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDH" = ( +"aDK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17008,7 +17051,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDI" = ( +"aDL" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -17022,15 +17065,15 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDJ" = ( +"aDM" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDK" = ( +"aDN" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aDL" = ( +"aDO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -17049,7 +17092,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aDM" = ( +"aDP" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -17068,7 +17111,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aDN" = ( +"aDQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17076,7 +17119,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDO" = ( +"aDR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17091,7 +17134,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aDP" = ( +"aDS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17099,7 +17142,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDQ" = ( +"aDT" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -17112,7 +17155,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDR" = ( +"aDU" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 3"; @@ -17122,7 +17165,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aDS" = ( +"aDV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -17132,7 +17175,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aDT" = ( +"aDW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -17156,7 +17199,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aDU" = ( +"aDX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17170,7 +17213,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDV" = ( +"aDY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -17182,7 +17225,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aDW" = ( +"aDZ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -17194,21 +17237,21 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aDX" = ( +"aEa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/banner, /turf/simulated/floor/wood, /area/lawoffice) -"aDY" = ( +"aEb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/lawoffice) -"aDZ" = ( +"aEc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 4 @@ -17216,14 +17259,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/lawoffice) -"aEa" = ( +"aEd" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/lawoffice) -"aEb" = ( +"aEe" = ( /obj/structure/table/wood, /obj/item/weapon/folder{ pixel_x = 5; @@ -17252,7 +17295,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aEc" = ( +"aEf" = ( /obj/machinery/atm{ pixel_x = -32 }, @@ -17262,39 +17305,39 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aEd" = ( +"aEg" = ( /obj/machinery/computer/guestpass{ pixel_x = 32; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aEe" = ( +"aEh" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 10 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEf" = ( +"aEi" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/teleporter) -"aEg" = ( +"aEj" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEh" = ( +"aEk" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 8 }, /turf/simulated/floor/tiled, /area/teleporter) -"aEi" = ( +"aEl" = ( /obj/machinery/shieldwallgen, /obj/structure/cable/green{ d1 = 1; @@ -17303,7 +17346,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aEj" = ( +"aEm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 2; @@ -17312,7 +17355,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aEk" = ( +"aEn" = ( /obj/structure/flora/ausbushes/ppflowers, /obj/machinery/light{ dir = 8; @@ -17321,11 +17364,11 @@ }, /turf/simulated/floor/grass, /area/bridge) -"aEl" = ( +"aEo" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/bridge) -"aEm" = ( +"aEp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -17340,7 +17383,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aEn" = ( +"aEq" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -17349,11 +17392,11 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aEo" = ( +"aEr" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aEp" = ( +"aEs" = ( /obj/structure/window/reinforced/tinted{ dir = 4; icon_state = "twindow" @@ -17369,7 +17412,7 @@ /obj/item/weapon/bikehorn/rubberducky, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEq" = ( +"aEt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -17378,7 +17421,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEr" = ( +"aEu" = ( /obj/machinery/door/airlock{ name = "Private Restroom" }, @@ -17390,7 +17433,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aEs" = ( +"aEv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -17399,7 +17442,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEt" = ( +"aEw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -17407,7 +17450,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEu" = ( +"aEx" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/captain, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17418,7 +17461,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEv" = ( +"aEy" = ( /obj/machinery/papershredder, /obj/item/weapon/storage/secure/safe{ pixel_x = -28; @@ -17426,7 +17469,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEw" = ( +"aEz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17445,7 +17488,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEx" = ( +"aEA" = ( /obj/structure/table/wood, /obj/machinery/recharger, /obj/structure/cable/green{ @@ -17469,7 +17512,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aEy" = ( +"aEB" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -17493,7 +17536,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aEz" = ( +"aEC" = ( /obj/machinery/light{ dir = 8 }, @@ -17502,13 +17545,13 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/crew_quarters/captain) -"aEA" = ( +"aED" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEB" = ( +"aEE" = ( /obj/machinery/atmospherics/binary/circulator{ anchored = 1; dir = 4; @@ -17517,14 +17560,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEC" = ( +"aEF" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aED" = ( +"aEG" = ( /obj/machinery/atmospherics/valve/digital{ dir = 1; icon_state = "map_valve0"; @@ -17532,7 +17575,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aEE" = ( +"aEH" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1379; icon_state = "door_closed"; @@ -17543,14 +17586,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEF" = ( +"aEI" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEG" = ( +"aEJ" = ( /obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -17562,7 +17605,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEH" = ( +"aEK" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1379; icon_state = "door_closed"; @@ -17573,7 +17616,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aEI" = ( +"aEL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -17591,7 +17634,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEJ" = ( +"aEM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17605,7 +17648,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEK" = ( +"aEN" = ( /obj/machinery/door/airlock/maintenance_hatch{ icon_state = "door_closed"; locked = 0; @@ -17629,7 +17672,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aEL" = ( +"aEO" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -17653,7 +17696,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aEM" = ( +"aEP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -17668,7 +17711,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aEN" = ( +"aEQ" = ( /obj/item/stack/material/glass{ amount = 50 }, @@ -17685,15 +17728,15 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/engineering/storage) -"aEO" = ( +"aER" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/storage) -"aEP" = ( +"aES" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/storage) -"aEQ" = ( +"aET" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17705,7 +17748,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aER" = ( +"aEU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; @@ -17718,7 +17761,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aES" = ( +"aEV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17734,7 +17777,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aET" = ( +"aEW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -17757,7 +17800,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEU" = ( +"aEX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17775,7 +17818,7 @@ /obj/effect/floor_decal/corner/yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEV" = ( +"aEY" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17794,7 +17837,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEW" = ( +"aEZ" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17813,7 +17856,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEX" = ( +"aFa" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 4; @@ -17832,7 +17875,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEY" = ( +"aFb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17854,7 +17897,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aEZ" = ( +"aFc" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17868,7 +17911,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFa" = ( +"aFd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -17876,7 +17919,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFb" = ( +"aFe" = ( /obj/structure/table/standard, /obj/machinery/microwave{ pixel_x = -2; @@ -17891,7 +17934,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aFc" = ( +"aFf" = ( /obj/machinery/light/small{ dir = 8 }, @@ -17905,7 +17948,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFd" = ( +"aFg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -17913,7 +17956,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFe" = ( +"aFh" = ( /obj/machinery/door/airlock/glass_medical{ name = "Medical Voidsuits"; req_one_access = list(5) @@ -17925,7 +17968,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFf" = ( +"aFi" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -17942,7 +17985,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFg" = ( +"aFj" = ( /obj/machinery/light{ dir = 1 }, @@ -17953,7 +17996,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFh" = ( +"aFk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/full{ @@ -17961,7 +18004,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFi" = ( +"aFl" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -17971,14 +18014,14 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFj" = ( +"aFm" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFk" = ( +"aFn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ name = "Security Voidsuits"; @@ -17986,10 +18029,10 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFl" = ( +"aFo" = ( /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFm" = ( +"aFp" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/void/security, @@ -18004,11 +18047,11 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aFn" = ( +"aFq" = ( /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled, /area/security/brig) -"aFo" = ( +"aFr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -18017,7 +18060,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFp" = ( +"aFs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -18032,7 +18075,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFq" = ( +"aFt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18055,7 +18098,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFr" = ( +"aFu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18075,7 +18118,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFs" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18093,7 +18136,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFt" = ( +"aFw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18118,7 +18161,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFu" = ( +"aFx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -18132,7 +18175,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFv" = ( +"aFy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18164,7 +18207,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFw" = ( +"aFz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18183,7 +18226,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFx" = ( +"aFA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18200,7 +18243,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFy" = ( +"aFB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18219,7 +18262,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFz" = ( +"aFC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18233,7 +18276,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFA" = ( +"aFD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18253,7 +18296,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aFB" = ( +"aFE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -18268,7 +18311,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFC" = ( +"aFF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -18278,7 +18321,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFD" = ( +"aFG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -18290,7 +18333,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFE" = ( +"aFH" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -18302,7 +18345,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFF" = ( +"aFI" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18311,7 +18354,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFG" = ( +"aFJ" = ( /obj/structure/closet/secure_closet/warden, /obj/item/device/megaphone, /obj/item/weapon/crowbar, @@ -18325,7 +18368,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aFH" = ( +"aFK" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18347,7 +18390,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aFI" = ( +"aFL" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -18358,7 +18401,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aFJ" = ( +"aFM" = ( /obj/machinery/flasher{ id = "permflash"; name = "Floor mounted flash"; @@ -18369,18 +18412,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aFK" = ( +"aFN" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/security/prison) -"aFL" = ( +"aFO" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled, /area/security/prison) -"aFM" = ( +"aFP" = ( /obj/structure/table/standard, /obj/item/weapon/newspaper, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -18388,14 +18431,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFN" = ( +"aFQ" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aFO" = ( +"aFR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18416,7 +18459,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFP" = ( +"aFS" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; name = "Cell 3 Locker" @@ -18427,7 +18470,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFQ" = ( +"aFT" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -18438,7 +18481,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aFR" = ( +"aFU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18466,7 +18509,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aFS" = ( +"aFV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18478,7 +18521,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aFT" = ( +"aFW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ desc = "It opens and closes. Bring your relationship affairs here."; @@ -18498,7 +18541,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFU" = ( +"aFX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18512,7 +18555,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFV" = ( +"aFY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18527,7 +18570,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/lawoffice) -"aFW" = ( +"aFZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -18545,7 +18588,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFX" = ( +"aGa" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -18557,7 +18600,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFY" = ( +"aGb" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -18571,7 +18614,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aFZ" = ( +"aGc" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -18590,7 +18633,7 @@ }, /turf/simulated/floor/wood, /area/lawoffice) -"aGa" = ( +"aGd" = ( /obj/item/device/radio/intercom{ dir = 8; name = "Station Intercom (General)"; @@ -18598,29 +18641,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aGb" = ( +"aGe" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/starboard) -"aGc" = ( +"aGf" = ( /obj/machinery/computer/teleporter, /turf/simulated/floor/plating, /area/teleporter) -"aGd" = ( +"aGg" = ( /obj/machinery/teleport/station, /turf/simulated/floor/plating, /area/teleporter) -"aGe" = ( +"aGh" = ( /obj/machinery/teleport/hub, /obj/effect/decal/warning_stripes, /turf/simulated/floor/plating, /area/teleporter) -"aGf" = ( +"aGi" = ( /obj/structure/table/rack, /obj/item/weapon/tank/oxygen, /obj/item/clothing/mask/gas, /turf/simulated/floor/plating, /area/teleporter) -"aGg" = ( +"aGj" = ( /obj/machinery/shieldwallgen, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -18628,7 +18671,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/teleporter) -"aGh" = ( +"aGk" = ( /obj/machinery/light_switch{ pixel_x = 24 }, @@ -18643,16 +18686,16 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aGi" = ( +"aGl" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/bridge) -"aGj" = ( +"aGm" = ( /obj/structure/flora/ausbushes/lavendergrass, /turf/simulated/floor/grass, /area/bridge) -"aGk" = ( +"aGn" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -18668,7 +18711,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aGl" = ( +"aGo" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -18680,7 +18723,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aGm" = ( +"aGp" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Deck Entrance"; dir = 1 @@ -18691,11 +18734,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aGn" = ( +"aGq" = ( /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aGo" = ( +"aGr" = ( /obj/item/device/radio/intercom{ frequency = 1449; pixel_x = 0; @@ -18706,7 +18749,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/captain) -"aGp" = ( +"aGs" = ( /obj/structure/table/wood, /obj/item/weapon/storage/fancy/cigar, /obj/item/weapon/flame/lighter/zippo, @@ -18717,7 +18760,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGq" = ( +"aGt" = ( /obj/structure/table/wood, /obj/item/weapon/pinpointer, /obj/item/weapon/disk/nuclear, @@ -18727,11 +18770,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGr" = ( +"aGu" = ( /obj/structure/displaycase, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGs" = ( +"aGv" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -18740,7 +18783,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGt" = ( +"aGw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -18750,7 +18793,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGu" = ( +"aGx" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; req_access = list(20) @@ -18763,7 +18806,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGv" = ( +"aGy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -18772,7 +18815,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGw" = ( +"aGz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18780,7 +18823,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGx" = ( +"aGA" = ( /obj/structure/table/wood, /obj/machinery/photocopier/faxmachine{ department = "Captain's Office" @@ -18792,7 +18835,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aGy" = ( +"aGB" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -18817,7 +18860,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aGz" = ( +"aGC" = ( /obj/machinery/atmospherics/valve/digital{ name = "Emergency Cooling Valve 2"; icon_state = "map_valve0"; @@ -18825,7 +18868,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGA" = ( +"aGD" = ( /obj/machinery/power/generator{ anchored = 1 }, @@ -18836,7 +18879,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGB" = ( +"aGE" = ( /obj/machinery/power/generator{ anchored = 1 }, @@ -18851,7 +18894,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGC" = ( +"aGF" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -18860,7 +18903,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGD" = ( +"aGG" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; @@ -18868,7 +18911,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGE" = ( +"aGH" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -18876,7 +18919,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aGF" = ( +"aGI" = ( /obj/machinery/airlock_sensor{ frequency = 1379; id_tag = "eng_al_c_snsr"; @@ -18897,7 +18940,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aGG" = ( +"aGJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -18909,7 +18952,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) -"aGH" = ( +"aGK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/power/apc{ dir = 2; @@ -18923,7 +18966,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aGI" = ( +"aGL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -18933,12 +18976,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) -"aGJ" = ( +"aGM" = ( /obj/machinery/light, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aGK" = ( +"aGN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -18955,7 +18998,7 @@ }, /turf/simulated/floor/plating, /area/engineering/storage) -"aGL" = ( +"aGO" = ( /obj/structure/table/standard, /obj/item/device/radio/off, /obj/item/device/radio/off, @@ -18965,19 +19008,19 @@ /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGM" = ( +"aGP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGN" = ( +"aGQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGO" = ( +"aGR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18986,7 +19029,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGP" = ( +"aGS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18995,7 +19038,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGQ" = ( +"aGT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19008,7 +19051,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGR" = ( +"aGU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering EVA Storage"; @@ -19022,7 +19065,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aGS" = ( +"aGV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19035,7 +19078,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGT" = ( +"aGW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19050,7 +19093,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGU" = ( +"aGX" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -19063,21 +19106,21 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGV" = ( +"aGY" = ( /obj/structure/table/wood/gamblingtable, /obj/machinery/recharger, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGW" = ( +"aGZ" = ( /obj/structure/table/wood/gamblingtable, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGX" = ( +"aHa" = ( /obj/structure/table/wood/gamblingtable, /obj/item/weapon/book/manual/supermatter_engine, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGY" = ( +"aHb" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19090,11 +19133,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aGZ" = ( +"aHc" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHa" = ( +"aHd" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/drinkingglasses{ pixel_x = 1; @@ -19110,7 +19153,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHb" = ( +"aHe" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -19123,7 +19166,7 @@ /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aHc" = ( +"aHf" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -19135,7 +19178,7 @@ /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHd" = ( +"aHg" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -19146,7 +19189,7 @@ /obj/item/clothing/suit/space/void/medical, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHe" = ( +"aHh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -19163,26 +19206,26 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aHf" = ( +"aHi" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/welding, /obj/item/weapon/storage/belt/utility, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHg" = ( +"aHj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHh" = ( +"aHk" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHi" = ( +"aHl" = ( /obj/structure/table/reinforced, /obj/item/stack/material/glass{ amount = 50 @@ -19196,7 +19239,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHj" = ( +"aHm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -19212,7 +19255,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aHk" = ( +"aHn" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/head/helmet/space/void/security, @@ -19224,10 +19267,10 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aHl" = ( +"aHo" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/hos) -"aHm" = ( +"aHp" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19247,7 +19290,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHn" = ( +"aHq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19267,7 +19310,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHo" = ( +"aHr" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19291,7 +19334,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHp" = ( +"aHs" = ( /obj/machinery/door/airlock/command{ desc = "It opens and closes. It does not look very robust."; id_tag = "HoSdoor"; @@ -19319,7 +19362,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/crew_quarters/heads/hos) -"aHq" = ( +"aHt" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19343,7 +19386,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHr" = ( +"aHu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19363,7 +19406,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHs" = ( +"aHv" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -19383,10 +19426,10 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hos) -"aHt" = ( +"aHw" = ( /turf/simulated/wall/r_wall, /area/security/lobby) -"aHu" = ( +"aHx" = ( /obj/machinery/door/firedoor{ layer = 2.4 }, @@ -19407,7 +19450,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aHv" = ( +"aHy" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19431,7 +19474,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/lobby) -"aHw" = ( +"aHz" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -19456,7 +19499,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aHx" = ( +"aHA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19475,7 +19518,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHy" = ( +"aHB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northleft{ name = "Security Office" @@ -19484,7 +19527,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/brig) -"aHz" = ( +"aHC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor/northright{ name = "Security Office" @@ -19502,7 +19545,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aHA" = ( +"aHD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19522,7 +19565,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHB" = ( +"aHE" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19539,7 +19582,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHC" = ( +"aHF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -19555,11 +19598,11 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aHD" = ( +"aHG" = ( /obj/structure/sign/nosmoking_2, /turf/simulated/wall, /area/security/brig) -"aHE" = ( +"aHH" = ( /obj/machinery/recharger/wallcharger{ pixel_x = -32; pixel_y = -6 @@ -19574,13 +19617,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHF" = ( +"aHI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHG" = ( +"aHJ" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; @@ -19588,7 +19631,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHH" = ( +"aHK" = ( /obj/machinery/button/flasher{ id = "permflash"; name = "Brig flashes"; @@ -19601,7 +19644,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aHI" = ( +"aHL" = ( /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; req_access = list(3) @@ -19618,13 +19661,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/warden) -"aHJ" = ( +"aHM" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/prison) -"aHK" = ( +"aHN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -19632,7 +19675,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHL" = ( +"aHO" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1; @@ -19640,7 +19683,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHM" = ( +"aHP" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/security_space_law, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -19649,12 +19692,12 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHN" = ( +"aHQ" = ( /obj/structure/table/standard, /obj/item/toy/blink, /turf/simulated/floor/tiled, /area/security/prison) -"aHO" = ( +"aHR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19662,7 +19705,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHP" = ( +"aHS" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -19673,7 +19716,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aHQ" = ( +"aHT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19699,7 +19742,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aHR" = ( +"aHU" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -19709,11 +19752,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aHS" = ( +"aHV" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHT" = ( +"aHW" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -19726,7 +19769,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHU" = ( +"aHX" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/structure/sign/drop{ @@ -19735,17 +19778,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHV" = ( +"aHY" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHW" = ( +"aHZ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aHX" = ( +"aIa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Teleport Access"; @@ -19768,7 +19811,7 @@ }, /turf/simulated/floor/tiled, /area/teleporter) -"aHY" = ( +"aIb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19785,7 +19828,7 @@ /obj/structure/sign/flag/nanotrasen/left, /turf/simulated/floor/plating, /area/bridge) -"aHZ" = ( +"aIc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19802,7 +19845,7 @@ /obj/structure/sign/flag/nanotrasen/right, /turf/simulated/floor/plating, /area/bridge) -"aIa" = ( +"aId" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19821,7 +19864,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aIb" = ( +"aIe" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19849,7 +19892,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aIc" = ( +"aIf" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -19868,16 +19911,16 @@ }, /turf/simulated/floor/plating, /area/bridge) -"aId" = ( +"aIg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aIe" = ( +"aIh" = ( /obj/machinery/account_database, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aIf" = ( +"aIi" = ( /obj/machinery/atmospherics/binary/circulator{ anchored = 1; dir = 8; @@ -19886,36 +19929,36 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIg" = ( +"aIj" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIh" = ( +"aIk" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 6 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIi" = ( +"aIl" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIj" = ( +"aIm" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIk" = ( +"aIn" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aIl" = ( +"aIo" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; @@ -19925,7 +19968,7 @@ }, /turf/simulated/wall/r_wall, /area/engineering/engine_airlock) -"aIm" = ( +"aIp" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(11) }, @@ -19942,11 +19985,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"aIn" = ( +"aIq" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/engineering/engine_monitoring) -"aIo" = ( +"aIr" = ( /obj/structure/table/standard, /obj/item/device/suit_cooling_unit, /obj/item/device/suit_cooling_unit, @@ -19981,11 +20024,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIp" = ( +"aIs" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIq" = ( +"aIt" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/sign/nosmoking_2{ @@ -19994,12 +20037,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIr" = ( +"aIu" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIs" = ( +"aIv" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20016,7 +20059,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIt" = ( +"aIw" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20030,7 +20073,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIu" = ( +"aIx" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/engineering, /obj/item/clothing/head/helmet/space/void/engineering, @@ -20047,12 +20090,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIv" = ( +"aIy" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/suit_cycler/engineering, /turf/simulated/floor/tiled, /area/engineering/storage) -"aIw" = ( +"aIz" = ( /obj/machinery/newscaster{ pixel_x = -27 }, @@ -20061,7 +20104,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIx" = ( +"aIA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20070,7 +20113,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIy" = ( +"aIB" = ( /obj/item/weapon/stool/padded, /obj/structure/cable{ d1 = 1; @@ -20087,12 +20130,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIz" = ( +"aIC" = ( /obj/structure/table/wood/gamblingtable, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIA" = ( +"aID" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20102,11 +20145,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIB" = ( +"aIE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aIC" = ( +"aIF" = ( /obj/structure/bookcase/manuals/engineering, /obj/item/weapon/book/manual/atmospipes, /obj/item/weapon/book/manual/engineering_guide, @@ -20116,7 +20159,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aID" = ( +"aIG" = ( /obj/machinery/requests_console{ department = "EVA"; pixel_x = -32; @@ -20134,7 +20177,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIE" = ( +"aIH" = ( /obj/structure/table/reinforced, /obj/machinery/camera/network/security{ c_tag = "EVA - Starboard Camera"; @@ -20148,7 +20191,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIF" = ( +"aII" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -20162,7 +20205,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aIG" = ( +"aIJ" = ( /obj/machinery/suit_cycler/security, /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; @@ -20170,20 +20213,20 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aIH" = ( +"aIK" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aII" = ( +"aIL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIJ" = ( +"aIM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20197,7 +20240,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIK" = ( +"aIN" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20206,7 +20249,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIL" = ( +"aIO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20215,7 +20258,7 @@ /obj/structure/banner, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIM" = ( +"aIP" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -20228,7 +20271,7 @@ /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aIN" = ( +"aIQ" = ( /obj/structure/bookcase/manuals, /obj/item/weapon/book/manual/security_space_law, /obj/item/weapon/book/manual/security_space_law, @@ -20236,7 +20279,7 @@ /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/tiled, /area/security/lobby) -"aIO" = ( +"aIR" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -20249,7 +20292,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIP" = ( +"aIS" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -20257,7 +20300,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIQ" = ( +"aIT" = ( /obj/machinery/light{ dir = 1 }, @@ -20271,7 +20314,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIR" = ( +"aIU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20285,7 +20328,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIS" = ( +"aIV" = ( /obj/structure/banner, /obj/machinery/status_display{ pixel_x = 0; @@ -20293,7 +20336,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aIT" = ( +"aIW" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -20320,7 +20363,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aIU" = ( +"aIX" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/green{ d1 = 1; @@ -20337,7 +20380,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aIV" = ( +"aIY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -20346,7 +20389,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aIW" = ( +"aIZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20361,7 +20404,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/security/brig) -"aIX" = ( +"aJa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -20379,7 +20422,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled, /area/security/brig) -"aIY" = ( +"aJb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20388,7 +20431,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aIZ" = ( +"aJc" = ( /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; req_access = list(3) @@ -20402,7 +20445,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/security/brig) -"aJa" = ( +"aJd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20415,7 +20458,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJb" = ( +"aJe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -20428,7 +20471,7 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJc" = ( +"aJf" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/security_space_law, /obj/item/device/eftpos{ @@ -20437,7 +20480,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJd" = ( +"aJg" = ( /obj/machinery/light, /obj/machinery/camera/network/security{ c_tag = "Security - Warden's Office"; @@ -20451,7 +20494,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJe" = ( +"aJh" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -20469,7 +20512,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aJf" = ( +"aJi" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -20489,48 +20532,48 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/warden) -"aJg" = ( +"aJj" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge, /turf/simulated/floor/tiled, /area/security/prison) -"aJh" = ( +"aJk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aJi" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJj" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) -"aJk" = ( -/obj/structure/table/standard, -/obj/item/weapon/dice, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/prison) "aJl" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) "aJm" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/prison) +"aJn" = ( +/obj/structure/table/standard, +/obj/item/weapon/dice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/prison) +"aJo" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/prison) +"aJp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20546,7 +20589,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJn" = ( +"aJq" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/structure/cable/green{ @@ -20556,14 +20599,14 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aJo" = ( +"aJr" = ( /obj/structure/toilet{ pixel_x = 0; pixel_y = 5 }, /turf/simulated/floor/tiled, /area/security/prison) -"aJp" = ( +"aJs" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = ""; @@ -20581,7 +20624,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aJq" = ( +"aJt" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -20592,26 +20635,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJr" = ( +"aJu" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJs" = ( +"aJv" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJt" = ( +"aJw" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/atm{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJu" = ( +"aJx" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -20630,7 +20673,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJv" = ( +"aJy" = ( /obj/machinery/light{ dir = 1 }, @@ -20639,7 +20682,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJw" = ( +"aJz" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -20647,13 +20690,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJx" = ( +"aJA" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJy" = ( +"aJB" = ( /obj/structure/sign/securearea{ pixel_y = 32 }, @@ -20667,7 +20710,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aJz" = ( +"aJC" = ( /obj/machinery/door/airlock/glass_command{ id_tag = "sbridgedoor"; name = "Bridge"; @@ -20679,7 +20722,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJA" = ( +"aJD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment{ dir = 4 @@ -20694,7 +20737,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJB" = ( +"aJE" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/disposalpipe/segment{ dir = 4 @@ -20705,7 +20748,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJC" = ( +"aJF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20723,7 +20766,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJD" = ( +"aJG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20736,7 +20779,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJE" = ( +"aJH" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -20750,7 +20793,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJF" = ( +"aJI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20761,7 +20804,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJG" = ( +"aJJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20775,7 +20818,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJH" = ( +"aJK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20786,7 +20829,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJI" = ( +"aJL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -20798,7 +20841,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJJ" = ( +"aJM" = ( /obj/structure/noticeboard{ pixel_y = 32 }, @@ -20808,14 +20851,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJK" = ( +"aJN" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/bridge) -"aJL" = ( +"aJO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -20827,14 +20870,14 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aJM" = ( +"aJP" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/bridge) -"aJN" = ( +"aJQ" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, @@ -20844,7 +20887,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aJO" = ( +"aJR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -20865,7 +20908,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aJP" = ( +"aJS" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/cable/green{ d1 = 2; @@ -20874,14 +20917,14 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJQ" = ( +"aJT" = ( /obj/structure/bed/chair/comfy/brown, /obj/structure/sign/nosmoking_2{ pixel_y = 32 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJR" = ( +"aJU" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -20894,7 +20937,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJS" = ( +"aJV" = ( /obj/structure/table/wood, /obj/machinery/camera/network/command{ c_tag = "Bridge - Captain's Office West" @@ -20905,17 +20948,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJT" = ( +"aJW" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJU" = ( +"aJX" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aJV" = ( +"aJY" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -20930,7 +20973,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJW" = ( +"aJZ" = ( /obj/structure/filingcabinet, /obj/machinery/requests_console{ announcementConsole = 1; @@ -20942,25 +20985,25 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJX" = ( +"aKa" = ( /obj/machinery/suit_cycler/captain, /obj/structure/sign/nosmoking_2{ pixel_x = 32 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aJY" = ( +"aKb" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aJZ" = ( +"aKc" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKa" = ( +"aKd" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; @@ -20968,14 +21011,14 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKb" = ( +"aKe" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKc" = ( +"aKf" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ icon_state = "map"; dir = 4 @@ -20983,7 +21026,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKd" = ( +"aKg" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -20991,7 +21034,7 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aKe" = ( +"aKh" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/structure/cable{ @@ -21006,7 +21049,7 @@ roof_type = null }, /area/maintenance/research_port) -"aKf" = ( +"aKi" = ( /obj/structure/ladder/up{ pixel_y = 16 }, @@ -21018,7 +21061,7 @@ roof_type = null }, /area/maintenance/research_port) -"aKg" = ( +"aKj" = ( /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, /obj/machinery/atmospherics/pipe/zpipe/down/supply, /obj/structure/cable{ @@ -21028,22 +21071,22 @@ /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/research_port) -"aKh" = ( +"aKk" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/maintenance/research_port) -"aKi" = ( +"aKl" = ( /turf/simulated/wall/r_wall, /area/maintenance/research_port) -"aKj" = ( +"aKm" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKk" = ( +"aKn" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -21052,10 +21095,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKl" = ( +"aKo" = ( /turf/simulated/floor/plating, /area/maintenance/research_port) -"aKm" = ( +"aKp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -21068,7 +21111,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKn" = ( +"aKq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21079,7 +21122,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKo" = ( +"aKr" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -21092,7 +21135,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKp" = ( +"aKs" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21103,7 +21146,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKq" = ( +"aKt" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21114,7 +21157,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKr" = ( +"aKu" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -21125,7 +21168,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKs" = ( +"aKv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -21138,7 +21181,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKt" = ( +"aKw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21148,7 +21191,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKu" = ( +"aKx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21157,7 +21200,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKv" = ( +"aKy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -21167,7 +21210,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKw" = ( +"aKz" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 6 @@ -21184,7 +21227,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aKx" = ( +"aKA" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -21198,7 +21241,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKy" = ( +"aKB" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -21209,14 +21252,14 @@ /obj/item/clothing/head/helmet/space/void/atmos, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKz" = ( +"aKC" = ( /obj/structure/table/reinforced, /obj/item/device/assembly/signaler, /obj/item/device/assembly/signaler, /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKA" = ( +"aKD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -21224,7 +21267,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKB" = ( +"aKE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -21234,7 +21277,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKC" = ( +"aKF" = ( /obj/structure/table/reinforced, /obj/structure/extinguisher_cabinet{ pixel_x = 25; @@ -21254,7 +21297,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aKD" = ( +"aKG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -21265,7 +21308,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aKE" = ( +"aKH" = ( /obj/structure/filingcabinet, /obj/machinery/recharger/wallcharger{ pixel_x = -24; @@ -21277,48 +21320,48 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKF" = ( +"aKI" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKG" = ( +"aKJ" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKH" = ( +"aKK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aKI" = ( +"aKL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKJ" = ( +"aKM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKK" = ( +"aKN" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/food/drinks/flask/barflask, /obj/item/device/flashlight/heavy, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aKL" = ( +"aKO" = ( /obj/machinery/newscaster{ pixel_x = -27 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aKM" = ( +"aKP" = ( /turf/simulated/floor/tiled, /area/security/lobby) -"aKN" = ( +"aKQ" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -21329,7 +21372,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aKO" = ( +"aKR" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -21346,7 +21389,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKP" = ( +"aKS" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -21373,7 +21416,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKQ" = ( +"aKT" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21384,7 +21427,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKR" = ( +"aKU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -21396,14 +21439,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKS" = ( +"aKV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/brig) -"aKT" = ( +"aKW" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -21418,7 +21461,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aKU" = ( +"aKX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/computer/cryopod{ @@ -21426,15 +21469,15 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aKV" = ( +"aKY" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aKW" = ( +"aKZ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/prison) -"aKX" = ( +"aLa" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 4"; @@ -21444,7 +21487,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aKY" = ( +"aLb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -21468,7 +21511,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aKZ" = ( +"aLc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -21495,7 +21538,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aLa" = ( +"aLd" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -21503,7 +21546,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLb" = ( +"aLe" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -21517,7 +21560,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLc" = ( +"aLf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -21531,7 +21574,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLd" = ( +"aLg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -21545,7 +21588,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLe" = ( +"aLh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -21557,7 +21600,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLf" = ( +"aLi" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -21576,7 +21619,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLg" = ( +"aLj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21588,7 +21631,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLh" = ( +"aLk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21600,7 +21643,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLi" = ( +"aLl" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21613,7 +21656,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLj" = ( +"aLm" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -21630,7 +21673,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLk" = ( +"aLn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21647,7 +21690,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLl" = ( +"aLo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21673,7 +21716,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLm" = ( +"aLp" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21691,7 +21734,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLn" = ( +"aLq" = ( /obj/structure/disposalpipe/junction/yjunction{ icon_state = "pipe-y"; dir = 8 @@ -21720,7 +21763,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aLo" = ( +"aLr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/regular{ density = 0; @@ -21732,7 +21775,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aLp" = ( +"aLs" = ( /obj/machinery/computer/guestpass{ pixel_x = -32 }, @@ -21744,12 +21787,12 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLq" = ( +"aLt" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/bridge) -"aLr" = ( +"aLu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -21768,7 +21811,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLs" = ( +"aLv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21786,7 +21829,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLt" = ( +"aLw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -21805,71 +21848,71 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aLv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/bridge) -"aLw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/bridge) "aLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/bridge) +"aLy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/bridge) +"aLz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/bridge) +"aLA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21888,7 +21931,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLy" = ( +"aLB" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -21913,7 +21956,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aLz" = ( +"aLC" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -21922,7 +21965,7 @@ /obj/structure/table/wood, /turf/simulated/floor/tiled, /area/bridge) -"aLA" = ( +"aLD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -21939,7 +21982,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aLB" = ( +"aLE" = ( /obj/structure/table/wood, /obj/structure/cable/green{ d1 = 2; @@ -21956,12 +21999,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLC" = ( +"aLF" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLD" = ( +"aLG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -21970,16 +22013,16 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aLE" = ( +"aLH" = ( /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aLF" = ( +"aLI" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/item/weapon/stamp/captain, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLG" = ( +"aLJ" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 @@ -22007,7 +22050,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLH" = ( +"aLK" = ( /obj/machinery/photocopier, /obj/machinery/camera/network/command{ c_tag = "Bridge - Captain's Office East"; @@ -22019,48 +22062,48 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aLI" = ( +"aLL" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 5 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLJ" = ( +"aLM" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLK" = ( +"aLN" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLL" = ( +"aLO" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 10 }, /obj/machinery/meter, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLM" = ( +"aLP" = ( /obj/machinery/atmospherics/binary/pump/high_power{ icon_state = "map_off"; dir = 1 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLN" = ( +"aLQ" = ( /obj/structure/closet/walllocker/emerglocker/south, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLO" = ( +"aLR" = ( /obj/structure/closet/hydrant{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aLP" = ( +"aLS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -22073,7 +22116,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLQ" = ( +"aLT" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -22084,7 +22127,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLR" = ( +"aLU" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -22094,7 +22137,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLS" = ( +"aLV" = ( /obj/structure/table/rack, /obj/random/loot, /obj/machinery/light/small/emergency{ @@ -22102,14 +22145,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLT" = ( +"aLW" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aLU" = ( +"aLX" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/chief) -"aLV" = ( +"aLY" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ce/equipped, /obj/item/clothing/mask/breath, @@ -22123,7 +22166,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aLW" = ( +"aLZ" = ( /obj/structure/table/reinforced, /obj/item/weapon/rcd_ammo, /obj/item/weapon/rcd_ammo, @@ -22142,7 +22185,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aLX" = ( +"aMa" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -22154,7 +22197,7 @@ /mob/living/bot/floorbot/floorbob, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aLY" = ( +"aMb" = ( /obj/machinery/power/apc/high{ dir = 1; name = "north bump"; @@ -22166,7 +22209,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aLZ" = ( +"aMc" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 1 @@ -22175,14 +22218,14 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMa" = ( +"aMd" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMb" = ( +"aMe" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/item/device/radio/intercom{ @@ -22191,7 +22234,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aMc" = ( +"aMf" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -22212,7 +22255,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aMd" = ( +"aMg" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -22228,7 +22271,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMe" = ( +"aMh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -22237,7 +22280,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMf" = ( +"aMi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -22248,11 +22291,11 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMg" = ( +"aMj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMh" = ( +"aMk" = ( /obj/machinery/light{ dir = 4 }, @@ -22264,28 +22307,28 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aMi" = ( +"aMl" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMj" = ( +"aMm" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Voidsuits"; req_one_access = list(11,24) }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMk" = ( +"aMn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/blue/diagonal, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMl" = ( +"aMo" = ( /obj/item/weapon/storage/briefcase/inflatable{ pixel_x = 3; pixel_y = 6 @@ -22299,7 +22342,7 @@ /obj/structure/table/reinforced, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMm" = ( +"aMp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -22316,7 +22359,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMn" = ( +"aMq" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -22326,7 +22369,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMo" = ( +"aMr" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -22340,7 +22383,7 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aMp" = ( +"aMs" = ( /obj/machinery/computer/secure_data, /obj/structure/sign/goldenplaque{ pixel_x = -32 @@ -22356,7 +22399,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMq" = ( +"aMt" = ( /obj/structure/bed/chair/comfy/red{ dir = 4 }, @@ -22388,7 +22431,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMr" = ( +"aMu" = ( /obj/structure/table/wood, /obj/item/weapon/folder/sec, /obj/item/weapon/pen/blue{ @@ -22401,21 +22444,21 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMs" = ( +"aMv" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMt" = ( +"aMw" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMu" = ( +"aMx" = ( /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMv" = ( +"aMy" = ( /obj/structure/table/wood, /obj/item/device/megaphone, /obj/item/device/radio, @@ -22430,7 +22473,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aMw" = ( +"aMz" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -22440,7 +22483,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aMx" = ( +"aMA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ @@ -22454,7 +22497,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aMy" = ( +"aMB" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -22471,7 +22514,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMz" = ( +"aMC" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -22492,11 +22535,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMA" = ( +"aMD" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled, /area/security/brig) -"aMB" = ( +"aME" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -22508,28 +22551,28 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMC" = ( +"aMF" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMD" = ( +"aMG" = ( /obj/machinery/door/airlock{ desc = "It opens and closes. A repulsive smell eminates from the door."; name = "Brig Toilet" }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aME" = ( +"aMH" = ( /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMF" = ( +"aMI" = ( /obj/item/toy/figure/warden, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMG" = ( +"aMJ" = ( /obj/machinery/shower{ dir = 8; icon_state = "shower"; @@ -22540,41 +22583,41 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aMH" = ( +"aMK" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aMI" = ( +"aML" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aMJ" = ( +"aMM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aMK" = ( +"aMN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/security/prison) -"aML" = ( +"aMO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aMM" = ( +"aMP" = ( /obj/machinery/flasher{ id = "permflash"; name = "Floor mounted flash"; @@ -22593,7 +22636,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aMN" = ( +"aMQ" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; name = "Cell 4 Locker" @@ -22604,7 +22647,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aMO" = ( +"aMR" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -22615,7 +22658,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aMP" = ( +"aMS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -22639,7 +22682,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMQ" = ( +"aMT" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22647,7 +22690,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMR" = ( +"aMU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ id_tag = ""; @@ -22675,7 +22718,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aMS" = ( +"aMV" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -22687,7 +22730,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMT" = ( +"aMW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -22698,20 +22741,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMU" = ( +"aMX" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Com"; location = "S2" }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMV" = ( +"aMY" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMW" = ( +"aMZ" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 }, @@ -22721,15 +22764,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMX" = ( +"aNa" = ( /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMY" = ( +"aNb" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aMZ" = ( +"aNc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22741,11 +22784,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNa" = ( +"aNd" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNb" = ( +"aNe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -22761,18 +22804,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNc" = ( +"aNf" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNd" = ( +"aNg" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNe" = ( +"aNh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22782,7 +22825,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNf" = ( +"aNi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22790,7 +22833,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNg" = ( +"aNj" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -22805,7 +22848,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aNh" = ( +"aNk" = ( /obj/machinery/door/airlock/glass_command{ id_tag = "sbridgedoor"; name = "Bridge"; @@ -22825,7 +22868,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNi" = ( +"aNl" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -22848,7 +22891,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNj" = ( +"aNm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22866,7 +22909,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNk" = ( +"aNn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22885,7 +22928,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNl" = ( +"aNo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22904,7 +22947,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/bridge) -"aNm" = ( +"aNp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -22923,7 +22966,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNn" = ( +"aNq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -22933,7 +22976,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aNo" = ( +"aNr" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -22941,14 +22984,14 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/bridge) -"aNp" = ( +"aNs" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/bridge) -"aNq" = ( +"aNt" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -22960,7 +23003,7 @@ /obj/item/stack/medical/ointment, /turf/simulated/floor/tiled, /area/bridge) -"aNr" = ( +"aNu" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -22968,7 +23011,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/bridge) -"aNs" = ( +"aNv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -22979,13 +23022,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/bridge) -"aNt" = ( +"aNw" = ( /obj/structure/bed/chair/comfy/brown{ dir = 8 }, /turf/simulated/floor/tiled, /area/bridge) -"aNu" = ( +"aNx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23005,7 +23048,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aNv" = ( +"aNy" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, @@ -23021,13 +23064,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNw" = ( +"aNz" = ( /obj/structure/bed/chair/comfy/brown{ dir = 1 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNx" = ( +"aNA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23036,20 +23079,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aNy" = ( +"aNB" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aNz" = ( +"aNC" = ( /obj/structure/table/wood, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNA" = ( +"aND" = ( /obj/item/modular_computer/console/preset/captain, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNB" = ( +"aNE" = ( /obj/structure/table/wood, /obj/item/device/megaphone, /obj/structure/cable/green{ @@ -23059,17 +23102,17 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aNC" = ( +"aNF" = ( /obj/machinery/atmospherics/pipe/simple/visible/black, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aND" = ( +"aNG" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/engineering/engine_room) -"aNE" = ( +"aNH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -23083,7 +23126,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNF" = ( +"aNI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23097,7 +23140,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNG" = ( +"aNJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ @@ -23112,7 +23155,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNH" = ( +"aNK" = ( /obj/machinery/door/airlock/maintenance_hatch{ req_access = list(12) }, @@ -23130,7 +23173,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNI" = ( +"aNL" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -23144,7 +23187,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNJ" = ( +"aNM" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23161,7 +23204,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aNK" = ( +"aNN" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Chief Engineer's Desk"; @@ -23172,10 +23215,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNL" = ( +"aNO" = ( /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNM" = ( +"aNP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23183,15 +23226,15 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNN" = ( +"aNQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNO" = ( +"aNR" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aNP" = ( +"aNS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23213,7 +23256,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aNQ" = ( +"aNT" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23224,20 +23267,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNR" = ( +"aNU" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNS" = ( +"aNV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNT" = ( +"aNW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23248,7 +23291,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNU" = ( +"aNX" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; name = "Engineering Break Room"; @@ -23256,20 +23299,20 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNV" = ( +"aNY" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNW" = ( +"aNZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNX" = ( +"aOa" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -23277,7 +23320,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aNY" = ( +"aOb" = ( /obj/item/device/radio/intercom{ frequency = 1459; name = "Station Intercom (General)"; @@ -23293,7 +23336,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aNZ" = ( +"aOc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23303,7 +23346,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOa" = ( +"aOd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -23311,7 +23354,7 @@ /obj/effect/floor_decal/corner/blue/diagonal, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOb" = ( +"aOe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A."; @@ -23319,23 +23362,23 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aOc" = ( +"aOf" = ( /obj/machinery/keycard_auth{ pixel_x = -28 }, /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aOd" = ( +"aOg" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aOe" = ( +"aOh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aOf" = ( +"aOi" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -23347,7 +23390,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aOg" = ( +"aOj" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -23360,13 +23403,13 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOh" = ( +"aOk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOi" = ( +"aOl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23377,7 +23420,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOj" = ( +"aOm" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -23392,7 +23435,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOk" = ( +"aOn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -23409,7 +23452,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aOl" = ( +"aOo" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -23439,7 +23482,7 @@ }, /turf/simulated/floor/plating, /area/security/brig) -"aOm" = ( +"aOp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23454,19 +23497,19 @@ /obj/item/modular_computer/console/preset/security, /turf/simulated/floor/tiled, /area/security/brig) -"aOn" = ( +"aOq" = ( /obj/machinery/computer/station_alert, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/brig) -"aOo" = ( +"aOr" = ( /obj/machinery/papershredder, /obj/machinery/light_switch{ pixel_y = -23 }, /turf/simulated/floor/tiled, /area/security/brig) -"aOp" = ( +"aOs" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -26 }, @@ -23476,7 +23519,7 @@ /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/security/brig) -"aOq" = ( +"aOt" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -26 }, @@ -23487,7 +23530,7 @@ /obj/item/weapon/folder/sec, /turf/simulated/floor/tiled, /area/security/brig) -"aOr" = ( +"aOu" = ( /obj/effect/floor_decal/corner/blue/full{ icon_state = "corner_white_full"; dir = 4 @@ -23510,14 +23553,14 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/brig) -"aOs" = ( +"aOv" = ( /obj/structure/toilet/noose{ icon_state = "toilet00"; dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOt" = ( +"aOw" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -23535,11 +23578,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOu" = ( +"aOx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aOv" = ( +"aOy" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -23551,12 +23594,12 @@ }, /turf/simulated/floor/tiled/white, /area/security/prison) -"aOw" = ( +"aOz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/security/prison) -"aOx" = ( +"aOA" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets{ @@ -23566,26 +23609,26 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/security/prison) -"aOy" = ( +"aOB" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/machinery/microwave, /turf/simulated/floor/tiled, /area/security/prison) -"aOz" = ( +"aOC" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/security/prison) -"aOA" = ( +"aOD" = ( /obj/machinery/newscaster{ pixel_x = 27 }, /turf/simulated/floor/tiled, /area/security/prison) -"aOB" = ( +"aOE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23604,7 +23647,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aOC" = ( +"aOF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -23614,7 +23657,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aOD" = ( +"aOG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23623,7 +23666,7 @@ /obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOE" = ( +"aOH" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -23634,10 +23677,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOF" = ( +"aOI" = ( /turf/simulated/wall, /area/store) -"aOG" = ( +"aOJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23650,7 +23693,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aOH" = ( +"aOK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -23662,7 +23705,7 @@ }, /turf/simulated/floor/plating, /area/store) -"aOI" = ( +"aOL" = ( /obj/machinery/door/blast/shutters{ id = "merch_shop"; name = "Merchandise Store" @@ -23679,7 +23722,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aOJ" = ( +"aOM" = ( /obj/machinery/door/blast/shutters{ id = "merch_shop"; name = "Merchandise Store" @@ -23688,7 +23731,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/store) -"aOK" = ( +"aON" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -23702,7 +23745,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aOL" = ( +"aOO" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -23714,10 +23757,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aOM" = ( +"aOP" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/hop) -"aON" = ( +"aOQ" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; req_access = list(57) @@ -23727,7 +23770,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aOO" = ( +"aOR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23743,7 +23786,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOP" = ( +"aOS" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23759,10 +23802,10 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOQ" = ( +"aOT" = ( /turf/simulated/wall/r_wall, /area/bridge/meeting_room) -"aOR" = ( +"aOU" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -23774,7 +23817,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aOS" = ( +"aOV" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -23786,7 +23829,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOT" = ( +"aOW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23809,7 +23852,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aOU" = ( +"aOX" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -23830,7 +23873,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOV" = ( +"aOY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23847,7 +23890,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aOW" = ( +"aOZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "captaindoor"; @@ -23870,7 +23913,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aOX" = ( +"aPa" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23897,7 +23940,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aOY" = ( +"aPb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23914,7 +23957,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aOZ" = ( +"aPc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23934,7 +23977,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPa" = ( +"aPd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23946,7 +23989,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPb" = ( +"aPe" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -23959,12 +24002,12 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPc" = ( +"aPf" = ( /obj/item/toy/figure/captain, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aPd" = ( +"aPg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -23976,7 +24019,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aPe" = ( +"aPh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -23988,14 +24031,14 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aPf" = ( +"aPi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPg" = ( +"aPj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24011,7 +24054,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPh" = ( +"aPk" = ( /obj/structure/table/wood, /obj/item/weapon/storage/lockbox/medal, /obj/structure/cable/green{ @@ -24035,7 +24078,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aPi" = ( +"aPl" = ( /obj/structure/sign/drop{ pixel_y = -32 }, @@ -24045,19 +24088,19 @@ }, /turf/simulated/open, /area/engineering/engine_room) -"aPj" = ( +"aPm" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/zpipe/down/green{ dir = 1 }, /turf/simulated/open, /area/engineering/engine_room) -"aPk" = ( +"aPn" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aPl" = ( +"aPo" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -24067,7 +24110,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aPm" = ( +"aPp" = ( /obj/machinery/button/remote/driver{ id = "enginecore"; name = "Emergency Core Eject"; @@ -24079,10 +24122,10 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aPn" = ( +"aPq" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPo" = ( +"aPr" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ pixel_x = -5; @@ -24092,13 +24135,13 @@ /obj/item/weapon/flame/lighter/zippo, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPp" = ( +"aPs" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPq" = ( +"aPt" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -24108,11 +24151,11 @@ /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aPr" = ( +"aPu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aPs" = ( +"aPv" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -24128,7 +24171,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aPt" = ( +"aPw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24154,7 +24197,7 @@ /obj/structure/window/reinforced/polarized, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aPu" = ( +"aPx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -24164,7 +24207,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPv" = ( +"aPy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24180,7 +24223,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPw" = ( +"aPz" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24199,7 +24242,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPx" = ( +"aPA" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24211,7 +24254,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPy" = ( +"aPB" = ( /obj/structure/table/rack, /obj/machinery/power/apc{ dir = 4; @@ -24229,10 +24272,10 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPz" = ( +"aPC" = ( /turf/simulated/wall, /area/engineering/foyer) -"aPA" = ( +"aPD" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -24240,23 +24283,23 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPB" = ( +"aPE" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPC" = ( +"aPF" = ( /obj/item/modular_computer/console/preset/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPD" = ( +"aPG" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPE" = ( +"aPH" = ( /obj/machinery/button/remote/blast_door{ id = "Singuloth"; name = "Engineering delivery Control"; @@ -24264,14 +24307,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aPF" = ( +"aPI" = ( /obj/machinery/suit_cycler/medical, /obj/effect/floor_decal/corner/blue/full{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPG" = ( +"aPJ" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/item/weapon/cell/high{ @@ -24295,13 +24338,13 @@ /obj/item/device/radio/off, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPH" = ( +"aPK" = ( /obj/structure/table/reinforced, /obj/item/hoist_kit, /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPI" = ( +"aPL" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -24317,7 +24360,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aPJ" = ( +"aPM" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -24325,32 +24368,32 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aPK" = ( +"aPN" = ( /obj/structure/closet/secure_closet/hos, /obj/item/device/multitool, /obj/item/weapon/reagent_containers/spray/pepper, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPL" = ( +"aPO" = ( /obj/item/device/radio/intercom{ pixel_y = -28 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPM" = ( +"aPP" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPN" = ( +"aPQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPO" = ( +"aPR" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 8 @@ -24365,7 +24408,7 @@ /mob/living/simple_animal/hostile/commanded/dog/columbo, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPP" = ( +"aPS" = ( /obj/machinery/photocopier, /obj/machinery/requests_console{ announcementConsole = 1; @@ -24377,7 +24420,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPQ" = ( +"aPT" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -24391,7 +24434,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/heads/hos) -"aPR" = ( +"aPU" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -24402,7 +24445,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/security/lobby) -"aPS" = ( +"aPV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -24415,7 +24458,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aPT" = ( +"aPW" = ( /obj/machinery/ringer_button{ id = "brig_ringer"; pixel_x = 24; @@ -24423,10 +24466,10 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aPU" = ( +"aPX" = ( /turf/simulated/wall/r_wall, /area/security/prison) -"aPV" = ( +"aPY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -24437,7 +24480,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aPW" = ( +"aPZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24446,7 +24489,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aPX" = ( +"aQa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24455,7 +24498,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aPY" = ( +"aQb" = ( /obj/machinery/door/airlock{ name = "Brig Showers" }, @@ -24468,7 +24511,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/security/prison) -"aPZ" = ( +"aQc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24478,7 +24521,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aQa" = ( +"aQd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -24487,7 +24530,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQb" = ( +"aQe" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; id = null; @@ -24495,7 +24538,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQc" = ( +"aQf" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24503,7 +24546,7 @@ /obj/item/weapon/mop, /turf/simulated/floor/tiled, /area/security/prison) -"aQd" = ( +"aQg" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24511,7 +24554,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aQe" = ( +"aQh" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -24519,7 +24562,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aQf" = ( +"aQi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24532,7 +24575,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQg" = ( +"aQj" = ( /obj/item/toy/prize/deathripley{ desc = "This is Johnny 5. Is he alive?"; name = "Johnny 5" @@ -24544,7 +24587,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aQh" = ( +"aQk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24563,7 +24606,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aQi" = ( +"aQl" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -24575,7 +24618,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aQj" = ( +"aQm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -24596,14 +24639,14 @@ }, /turf/simulated/floor/plating, /area/store) -"aQk" = ( -/obj/structure/table/wood, +"aQn" = ( /obj/machinery/light{ dir = 1 }, +/obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/store) -"aQl" = ( +"aQo" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -24613,11 +24656,10 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aQm" = ( -/obj/structure/table/wood, +"aQp" = ( /turf/simulated/floor/tiled, /area/store) -"aQn" = ( +"aQq" = ( /obj/machinery/door/window/northleft{ dir = 4; name = "Store Access"; @@ -24640,7 +24682,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aQo" = ( +"aQr" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -24660,14 +24702,14 @@ }, /turf/simulated/floor/tiled, /area/store) -"aQp" = ( +"aQs" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled, /area/store) -"aQq" = ( +"aQt" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -24679,20 +24721,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/store) -"aQr" = ( +"aQu" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQs" = ( +"aQv" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQt" = ( +"aQw" = ( /turf/simulated/wall, /area/maintenance/maintcentral) -"aQu" = ( +"aQx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 1; @@ -24703,7 +24745,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aQv" = ( +"aQy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -24718,11 +24760,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aQw" = ( +"aQz" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aQx" = ( +"aQA" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; @@ -24758,7 +24800,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQy" = ( +"aQB" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -24772,7 +24814,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQz" = ( +"aQC" = ( /obj/machinery/button/remote/blast_door{ desc = "A remote control-switch for shutters."; id = "hop_office_desk"; @@ -24794,7 +24836,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQA" = ( +"aQD" = ( /obj/machinery/computer/guestpass{ pixel_y = 32 }, @@ -24810,7 +24852,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQB" = ( +"aQE" = ( /obj/machinery/keycard_auth{ pixel_x = 24 }, @@ -24827,11 +24869,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aQC" = ( +"aQF" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aQD" = ( +"aQG" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 4 @@ -24842,7 +24884,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aQE" = ( +"aQH" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -24854,21 +24896,21 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQF" = ( +"aQI" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQG" = ( +"aQJ" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aQH" = ( +"aQK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -24885,7 +24927,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aQI" = ( +"aQL" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Corridor Camera 2"; dir = 4; @@ -24898,7 +24940,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aQJ" = ( +"aQM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -24911,7 +24953,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aQK" = ( +"aQN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -24921,11 +24963,11 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aQL" = ( +"aQO" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/bridge) -"aQM" = ( +"aQP" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -24949,7 +24991,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aQN" = ( +"aQQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24970,7 +25012,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQO" = ( +"aQR" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -24979,7 +25021,7 @@ /obj/structure/table/wood, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQP" = ( +"aQS" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -24991,7 +25033,7 @@ /obj/structure/banner, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQQ" = ( +"aQT" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25005,7 +25047,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQR" = ( +"aQU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25029,7 +25071,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQS" = ( +"aQV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25047,7 +25089,7 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aQT" = ( +"aQW" = ( /obj/machinery/door/window{ base_state = "left"; dir = 8; @@ -25071,7 +25113,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQU" = ( +"aQX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25088,7 +25130,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQV" = ( +"aQY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25110,7 +25152,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQW" = ( +"aQZ" = ( /obj/machinery/keycard_auth{ pixel_x = 0; pixel_y = -24 @@ -25129,7 +25171,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQX" = ( +"aRa" = ( /obj/machinery/disposal, /obj/structure/cable/green{ d1 = 1; @@ -25144,7 +25186,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/captain) -"aQY" = ( +"aRb" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -25169,14 +25211,14 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aQZ" = ( +"aRc" = ( /obj/machinery/meter{ name = "Scrubbers" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aRa" = ( +"aRd" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25189,7 +25231,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aRb" = ( +"aRe" = ( /obj/machinery/keycard_auth{ pixel_x = -24; pixel_y = 0 @@ -25216,13 +25258,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRc" = ( +"aRf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRd" = ( +"aRg" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -25243,7 +25285,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRe" = ( +"aRh" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -25257,7 +25299,7 @@ /obj/item/weapon/stamp/ce, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRf" = ( +"aRi" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -25276,7 +25318,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aRg" = ( +"aRj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25291,7 +25333,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRh" = ( +"aRk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25315,7 +25357,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRi" = ( +"aRl" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 4; @@ -25335,7 +25377,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aRj" = ( +"aRm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -25353,7 +25395,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRk" = ( +"aRn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -25372,7 +25414,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRl" = ( +"aRo" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -25387,7 +25429,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRm" = ( +"aRp" = ( /obj/structure/closet/wardrobe/engineering_yellow, /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -25398,7 +25440,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRn" = ( +"aRq" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -25406,7 +25448,7 @@ /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRo" = ( +"aRr" = ( /obj/machinery/computer/security/engineering{ name = "Drone Monitoring Cameras" }, @@ -25416,7 +25458,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRp" = ( +"aRs" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -25424,7 +25466,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRq" = ( +"aRt" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 10 @@ -25432,7 +25474,7 @@ /obj/machinery/computer/station_alert/engineering, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRr" = ( +"aRu" = ( /obj/machinery/conveyor_switch/oneway{ id = "Engie Delivery"; name = "Engineering Conveyor" @@ -25443,14 +25485,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRs" = ( +"aRv" = ( /obj/machinery/conveyor{ backwards = 1; id = "Engie Delivery" }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aRt" = ( +"aRw" = ( /obj/machinery/suit_cycler/engineering, /obj/machinery/light/small{ dir = 8 @@ -25461,7 +25503,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRu" = ( +"aRx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A. Cycler Access"; @@ -25469,7 +25511,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRv" = ( +"aRy" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -25482,7 +25524,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aRw" = ( +"aRz" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -25519,13 +25561,13 @@ /obj/item/clothing/shoes/magboots, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aRx" = ( +"aRA" = ( /obj/item/device/radio/intercom{ pixel_x = -28 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRy" = ( +"aRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -25540,13 +25582,13 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRz" = ( +"aRC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRA" = ( +"aRD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25563,14 +25605,14 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRB" = ( +"aRE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/security/lobby) -"aRC" = ( +"aRF" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -25593,13 +25635,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/security/lobby) -"aRD" = ( +"aRG" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRE" = ( +"aRH" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -25611,7 +25653,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aRF" = ( +"aRI" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/firedoor, /obj/machinery/door/window/brigdoor{ @@ -25630,26 +25672,26 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aRG" = ( +"aRJ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/security/prison) -"aRH" = ( +"aRK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/security/prison) -"aRI" = ( +"aRL" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/machinery/washing_machine, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aRJ" = ( +"aRM" = ( /obj/structure/window/reinforced/tinted/frosted, /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -25657,7 +25699,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled/white, /area/security/prison) -"aRK" = ( +"aRN" = ( /obj/machinery/door/blast/regular{ dir = 4; id = "Cell 5"; @@ -25667,7 +25709,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/security/prison) -"aRL" = ( +"aRO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -25691,7 +25733,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/prison) -"aRM" = ( +"aRP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25706,7 +25748,7 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aRN" = ( +"aRQ" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 8; @@ -25719,7 +25761,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aRO" = ( +"aRR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -25737,11 +25779,11 @@ }, /turf/simulated/floor/plating, /area/store) -"aRP" = ( -/obj/structure/table/wood, +"aRS" = ( +/obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/store) -"aRQ" = ( +"aRT" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -25754,7 +25796,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRR" = ( +"aRU" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -25768,7 +25810,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRS" = ( +"aRV" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -25781,7 +25823,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled, /area/store) -"aRT" = ( +"aRW" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ name = "Store Desk"; @@ -25802,7 +25844,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aRU" = ( +"aRX" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small{ @@ -25810,17 +25852,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRV" = ( +"aRY" = ( /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRW" = ( +"aRZ" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aRX" = ( +"aSa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -25834,7 +25876,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aRY" = ( +"aSb" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -25847,7 +25889,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aRZ" = ( +"aSc" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 1 @@ -25855,7 +25897,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aSa" = ( +"aSd" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -25884,20 +25926,20 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aSb" = ( +"aSe" = ( /obj/item/modular_computer/console/preset/command, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSc" = ( +"aSf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSd" = ( +"aSg" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSe" = ( +"aSh" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -25909,14 +25951,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aSf" = ( +"aSi" = ( /obj/machinery/status_display{ pixel_x = -32; pixel_y = 0 }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aSg" = ( +"aSj" = ( /obj/structure/table/wood, /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; @@ -25925,16 +25967,16 @@ /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aSh" = ( +"aSk" = ( /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aSi" = ( +"aSl" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/pen, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aSj" = ( +"aSm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -25947,7 +25989,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aSk" = ( +"aSn" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -25955,7 +25997,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aSl" = ( +"aSo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -25966,7 +26008,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aSm" = ( +"aSp" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/machinery/status_display{ density = 0; @@ -25976,7 +26018,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aSn" = ( +"aSq" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -25993,7 +26035,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aSo" = ( +"aSr" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26010,10 +26052,10 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/captain) -"aSp" = ( +"aSs" = ( /turf/simulated/wall/r_wall, /area/bridge/ailobby) -"aSq" = ( +"aSt" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -26026,7 +26068,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aSr" = ( +"aSu" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -26038,21 +26080,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aSs" = ( +"aSv" = ( /obj/structure/closet/secure_closet/engineering_chief, /obj/item/weapon/tank/emergency_oxygen/engi, /obj/item/device/gps/engineering, /obj/item/weapon/pipewrench, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSt" = ( +"aSw" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/light_switch{ pixel_y = -28 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSu" = ( +"aSx" = ( /obj/item/modular_computer/console/preset/engineering, /obj/machinery/newscaster{ layer = 3.3; @@ -26061,7 +26103,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSv" = ( +"aSy" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/welding/superior{ pixel_x = 2; @@ -26073,7 +26115,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSw" = ( +"aSz" = ( /obj/machinery/light, /obj/structure/cable/green{ d1 = 1; @@ -26082,7 +26124,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/chief) -"aSx" = ( +"aSA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -26094,7 +26136,7 @@ /obj/structure/table/standard, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) -"aSy" = ( +"aSB" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -26116,12 +26158,12 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aSz" = ( +"aSC" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/floor_decal/corner/yellow/full, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSA" = ( +"aSD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26138,7 +26180,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSB" = ( +"aSE" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -26158,7 +26200,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSC" = ( +"aSF" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -26171,7 +26213,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSD" = ( +"aSG" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; @@ -26185,7 +26227,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSE" = ( +"aSH" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26199,7 +26241,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSF" = ( +"aSI" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26213,7 +26255,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSG" = ( +"aSJ" = ( /obj/structure/table/reinforced/steel, /obj/machinery/door/window/brigdoor/northleft{ name = "Engineering Desk"; @@ -26230,7 +26272,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aSH" = ( +"aSK" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -26243,7 +26285,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSI" = ( +"aSL" = ( /obj/machinery/conveyor{ backwards = 1; id = "Engie Delivery" @@ -26256,16 +26298,16 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/engineering/foyer) -"aSJ" = ( +"aSM" = ( /obj/machinery/suit_cycler/mining, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSK" = ( +"aSN" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSL" = ( +"aSO" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; @@ -26273,13 +26315,13 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSM" = ( +"aSP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/blue/full, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSN" = ( +"aSQ" = ( /obj/structure/dispenser/oxygen, /obj/machinery/camera/network/security{ c_tag = "EVA - Aft Camera"; @@ -26291,11 +26333,11 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSO" = ( +"aSR" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSP" = ( +"aSS" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -26309,7 +26351,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aSQ" = ( +"aST" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -26322,7 +26364,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aSR" = ( +"aSU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -26335,7 +26377,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSS" = ( +"aSV" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -26346,7 +26388,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aST" = ( +"aSW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 @@ -26358,7 +26400,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSU" = ( +"aSX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -26366,7 +26408,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"aSV" = ( +"aSY" = ( /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; req_access = list(12) @@ -26377,13 +26419,13 @@ }, /turf/simulated/floor/plating, /area/security/lobby) -"aSW" = ( +"aSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/security/lobby) -"aSX" = ( +"aTa" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 9 @@ -26394,7 +26436,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aSY" = ( +"aTb" = ( /obj/machinery/light, /obj/machinery/camera/network/security{ c_tag = "Security - Lobby"; @@ -26415,7 +26457,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aSZ" = ( +"aTc" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 6 @@ -26432,7 +26474,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTa" = ( +"aTd" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -26444,7 +26486,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTb" = ( +"aTe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26457,7 +26499,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTc" = ( +"aTf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26465,7 +26507,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTd" = ( +"aTg" = ( /obj/machinery/door/airlock{ id_tag = "visitdoor"; name = "Visitation Area"; @@ -26479,7 +26521,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTe" = ( +"aTh" = ( /obj/machinery/light/small{ dir = 4 }, @@ -26494,7 +26536,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aTf" = ( +"aTi" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -26521,7 +26563,7 @@ }, /turf/simulated/floor/plating, /area/security/prison) -"aTg" = ( +"aTj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -26534,7 +26576,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTh" = ( +"aTk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -26543,7 +26585,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTi" = ( +"aTl" = ( /obj/machinery/door/airlock{ name = "Visitation Area" }, @@ -26564,7 +26606,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTj" = ( +"aTm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26573,7 +26615,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTk" = ( +"aTn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26585,7 +26627,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTl" = ( +"aTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26597,7 +26639,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTm" = ( +"aTp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -26608,16 +26650,16 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/security/prison) -"aTn" = ( +"aTq" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled, /area/security/prison) -"aTo" = ( +"aTr" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/prison) -"aTp" = ( +"aTs" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/machinery/camera/network/prison{ @@ -26626,7 +26668,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTq" = ( +"aTt" = ( /obj/structure/closet/crate/trashcart, /obj/item/toy/figure/secofficer{ pixel_x = -3; @@ -26658,7 +26700,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTr" = ( +"aTu" = ( /obj/structure/table/standard, /obj/item/weapon/material/minihoe, /obj/item/device/analyzer/plant_analyzer, @@ -26670,7 +26712,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTs" = ( +"aTv" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 5"; name = "Cell 5 Locker" @@ -26681,7 +26723,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTt" = ( +"aTw" = ( /obj/structure/bed, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -26692,7 +26734,7 @@ }, /turf/simulated/floor/tiled, /area/security/prison) -"aTu" = ( +"aTx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -26700,12 +26742,11 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aTv" = ( +"aTy" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/security/brig) -"aTw" = ( -/obj/structure/table/wood, +"aTz" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -26713,7 +26754,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTx" = ( +"aTA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -26725,19 +26766,19 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTy" = ( +"aTB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/store) -"aTz" = ( +"aTC" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/store) -"aTA" = ( +"aTD" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, @@ -26747,7 +26788,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aTB" = ( +"aTE" = ( /obj/structure/table/rack{ dir = 1 }, @@ -26759,14 +26800,14 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aTC" = ( +"aTF" = ( /obj/random/junk, /obj/structure/closet/hydrant{ pixel_x = 32 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aTD" = ( +"aTG" = ( /obj/item/device/radio/intercom{ pixel_x = -27 }, @@ -26778,7 +26819,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aTE" = ( +"aTH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -26788,11 +26829,11 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aTF" = ( +"aTI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aTG" = ( +"aTJ" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -26822,25 +26863,25 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aTH" = ( +"aTK" = ( /obj/machinery/computer/secure_data, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTI" = ( +"aTL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTJ" = ( +"aTM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/structure/closet/secure_closet/hop2, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aTK" = ( +"aTN" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 4 @@ -26856,7 +26897,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aTL" = ( +"aTO" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/effect/floor_decal/spline/fancy/wood{ @@ -26865,20 +26906,20 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aTM" = ( +"aTP" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aTN" = ( +"aTQ" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aTO" = ( +"aTR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -26894,7 +26935,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aTP" = ( +"aTS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -26914,7 +26955,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aTQ" = ( +"aTT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26929,7 +26970,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"aTR" = ( +"aTU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26944,7 +26985,7 @@ /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled, /area/bridge) -"aTS" = ( +"aTV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26964,7 +27005,7 @@ dir = 4 }, /area/bridge) -"aTT" = ( +"aTW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26983,7 +27024,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aTU" = ( +"aTX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27002,7 +27043,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aTV" = ( +"aTY" = ( /obj/machinery/door/airlock/glass_command{ name = "B Lift Access"; req_access = list(19) @@ -27022,7 +27063,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aTW" = ( +"aTZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27036,7 +27077,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aTX" = ( +"aUa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -27048,7 +27089,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aTY" = ( +"aUb" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -27057,7 +27098,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aTZ" = ( +"aUc" = ( /obj/machinery/light{ dir = 1 }, @@ -27069,7 +27110,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUa" = ( +"aUd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -27079,10 +27120,10 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUb" = ( +"aUe" = ( /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUc" = ( +"aUf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Cyborg Station"; @@ -27090,7 +27131,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUd" = ( +"aUg" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -27099,12 +27140,12 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUe" = ( +"aUh" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aUf" = ( +"aUi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -27115,10 +27156,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aUg" = ( +"aUj" = ( /turf/simulated/wall/r_wall, /area/janitor) -"aUh" = ( +"aUk" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -27136,7 +27177,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUi" = ( +"aUl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -27157,7 +27198,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUj" = ( +"aUm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -27176,7 +27217,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUk" = ( +"aUn" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -27194,11 +27235,11 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/chief) -"aUl" = ( +"aUo" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/engineering/foyer) -"aUm" = ( +"aUp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -27219,7 +27260,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aUn" = ( +"aUq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -27235,7 +27276,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUo" = ( +"aUr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Hallway"; @@ -27244,7 +27285,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUp" = ( +"aUs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -27261,32 +27302,32 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/engineering/foyer) -"aUq" = ( +"aUt" = ( /obj/structure/sign/securearea, /turf/simulated/wall, /area/engineering/foyer) -"aUr" = ( +"aUu" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUs" = ( +"aUv" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUt" = ( +"aUw" = ( /obj/effect/floor_decal/corner/yellow/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aUu" = ( +"aUx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -27304,7 +27345,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUv" = ( +"aUy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27327,7 +27368,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUw" = ( +"aUz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ name = "E.V.A."; @@ -27347,7 +27388,7 @@ }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"aUx" = ( +"aUA" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27370,7 +27411,7 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUy" = ( +"aUB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -27388,10 +27429,10 @@ }, /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) -"aUz" = ( +"aUC" = ( /turf/simulated/wall, /area/hallway/primary/port) -"aUA" = ( +"aUD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -27405,10 +27446,10 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/port) -"aUB" = ( +"aUE" = ( /turf/simulated/wall, /area/hallway/primary/central_one) -"aUC" = ( +"aUF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_security{ desc = "It opens and closes. Hazardous lifeforms ahead. Caution advised!"; @@ -27416,7 +27457,7 @@ }, /turf/simulated/floor/tiled, /area/security/lobby) -"aUD" = ( +"aUG" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -27432,7 +27473,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/security/lobby) -"aUE" = ( +"aUH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -27450,14 +27491,14 @@ }, /turf/simulated/floor/tiled, /area/security/brig) -"aUF" = ( +"aUI" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aUG" = ( +"aUJ" = ( /obj/machinery/door/window/northleft{ dir = 4; icon_state = "left"; @@ -27469,7 +27510,7 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aUH" = ( +"aUK" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27477,16 +27518,13 @@ }, /turf/simulated/floor/tiled, /area/store) -"aUI" = ( +"aUL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/store) -"aUJ" = ( -/turf/simulated/floor/tiled, -/area/store) -"aUK" = ( +"aUM" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -27494,7 +27532,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aUL" = ( +"aUN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -27503,7 +27541,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aUM" = ( +"aUO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -27514,26 +27552,26 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hallway/primary/starboard) -"aUN" = ( +"aUP" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUO" = ( +"aUQ" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUP" = ( +"aUR" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUQ" = ( +"aUS" = ( /obj/structure/closet/secure_closet/hop, /obj/item/weapon/book/manual/security_space_law, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aUR" = ( +"aUT" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -27542,7 +27580,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aUS" = ( +"aUU" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -27555,7 +27593,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aUT" = ( +"aUV" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -27566,11 +27604,11 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUU" = ( +"aUW" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUV" = ( +"aUX" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/blue, /obj/item/weapon/folder/blue, @@ -27582,7 +27620,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aUW" = ( +"aUY" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -27592,7 +27630,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aUX" = ( +"aUZ" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -27601,7 +27639,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/bridge) -"aUY" = ( +"aVa" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -27609,7 +27647,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aUZ" = ( +"aVb" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/airlock/glass_command{ @@ -27618,7 +27656,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVa" = ( +"aVc" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 2; @@ -27627,15 +27665,15 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVb" = ( +"aVd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVc" = ( +"aVe" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVd" = ( +"aVf" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -27647,7 +27685,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVe" = ( +"aVg" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -27658,7 +27696,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aVf" = ( +"aVh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27670,7 +27708,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aVg" = ( +"aVi" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, @@ -27690,14 +27728,14 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aVh" = ( +"aVj" = ( /obj/item/weapon/stool, /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/janitor) -"aVi" = ( +"aVk" = ( /obj/structure/table/steel, /obj/item/weapon/deck/cards, /obj/item/weapon/key/janicart, @@ -27707,7 +27745,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aVj" = ( +"aVl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -27717,11 +27755,11 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVk" = ( +"aVm" = ( /obj/vehicle/train/cargo/engine/pussywagon, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVl" = ( +"aVn" = ( /obj/machinery/button/remote/blast_door{ id = "mopinator"; name = "Custodial Garage"; @@ -27730,7 +27768,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVm" = ( +"aVo" = ( /obj/machinery/door/blast/shutters{ density = 1; dir = 4; @@ -27741,30 +27779,30 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aVn" = ( +"aVp" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVo" = ( +"aVq" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVp" = ( +"aVr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVq" = ( +"aVs" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVr" = ( +"aVt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -27779,7 +27817,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVs" = ( +"aVu" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27794,7 +27832,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVt" = ( +"aVv" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; @@ -27802,28 +27840,29 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVu" = ( +"aVw" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVv" = ( +"aVx" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway" + name = "Engineering Hallway"; + req_one_access = null }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aVw" = ( +"aVy" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVx" = ( +"aVz" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -27844,16 +27883,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVy" = ( +"aVA" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVz" = ( +"aVB" = ( /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVA" = ( +"aVC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -27864,30 +27903,30 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVB" = ( +"aVD" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVC" = ( +"aVE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVD" = ( +"aVF" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVE" = ( +"aVG" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVF" = ( +"aVH" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -27896,19 +27935,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aVG" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aVH" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) "aVI" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/hallway/primary/port) "aVJ" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"aVK" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"aVL" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -27923,7 +27962,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVK" = ( +"aVM" = ( /obj/structure/sign/directions/cryo{ pixel_y = 28 }, @@ -27935,7 +27974,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVL" = ( +"aVN" = ( /obj/structure/sign/directions/security{ dir = 4; icon_state = "direction_sec"; @@ -27954,19 +27993,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVM" = ( +"aVO" = ( /obj/structure/sign/double/map/left{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVN" = ( +"aVP" = ( /obj/structure/sign/double/map/right{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVO" = ( +"aVQ" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -27975,13 +28014,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVP" = ( +"aVR" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVQ" = ( +"aVS" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, @@ -28005,25 +28044,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVR" = ( +"aVT" = ( /obj/effect/floor_decal/corner/blue{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVS" = ( +"aVU" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVT" = ( +"aVV" = ( /obj/machinery/station_map{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVU" = ( +"aVW" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -28043,7 +28082,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVV" = ( +"aVX" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -28060,7 +28099,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVW" = ( +"aVY" = ( /obj/structure/sign/directions/civ{ pixel_y = 24 }, @@ -28077,40 +28116,40 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aVX" = ( +"aVZ" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aVY" = ( +"aWa" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aVZ" = ( +"aWb" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWa" = ( +"aWc" = ( /obj/machinery/atm{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWb" = ( +"aWd" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWc" = ( +"aWe" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Starboard Corridor - Camera 2" }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWd" = ( +"aWf" = ( /obj/effect/floor_decal/corner/blue{ dir = 4 }, @@ -28119,13 +28158,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWe" = ( +"aWg" = ( /obj/effect/floor_decal/corner/blue{ dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWf" = ( +"aWh" = ( /obj/effect/floor_decal/corner/blue{ icon_state = "corner_white"; dir = 1 @@ -28133,14 +28172,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWg" = ( +"aWi" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Eng"; location = "S4" }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWh" = ( +"aWj" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -28159,12 +28198,12 @@ }, /turf/simulated/floor/plating, /area/store) -"aWi" = ( -/obj/structure/table/wood, +"aWk" = ( /obj/machinery/light, +/obj/structure/table/standard, /turf/simulated/floor/tiled/dark, /area/store) -"aWj" = ( +"aWl" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -28178,7 +28217,7 @@ }, /turf/simulated/floor/tiled/dark, /area/store) -"aWk" = ( +"aWm" = ( /obj/structure/closet, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/apc{ @@ -28189,13 +28228,13 @@ /obj/structure/cable, /turf/simulated/floor/tiled, /area/store) -"aWl" = ( +"aWn" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/store) -"aWm" = ( +"aWo" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/newscaster{ @@ -28207,8 +28246,7 @@ }, /turf/simulated/floor/tiled, /area/store) -"aWn" = ( -/obj/structure/table/wood, +"aWp" = ( /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /obj/machinery/button/remote/blast_door{ @@ -28228,13 +28266,14 @@ /obj/item/device/radio/intercom{ pixel_y = -27 }, +/obj/structure/table/standard, /turf/simulated/floor/tiled, /area/store) -"aWo" = ( +"aWq" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWp" = ( +"aWr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -28244,7 +28283,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWq" = ( +"aWs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28254,7 +28293,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWr" = ( +"aWt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -28268,7 +28307,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aWs" = ( +"aWu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -28277,7 +28316,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWt" = ( +"aWv" = ( /obj/structure/sign/nosmoking_1{ pixel_y = -32 }, @@ -28293,7 +28332,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWu" = ( +"aWw" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -28307,7 +28346,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aWv" = ( +"aWx" = ( /obj/structure/window/reinforced/polarized{ dir = 4; id = "hop" @@ -28340,7 +28379,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"aWw" = ( +"aWy" = ( /obj/structure/table/reinforced, /obj/item/device/eftpos{ eftpos_name = "HoP EFTPOS scanner" @@ -28349,14 +28388,14 @@ /obj/item/device/megaphone, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aWx" = ( +"aWz" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aWy" = ( +"aWA" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Head of Personnel Desk"; dir = 8 @@ -28368,11 +28407,11 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aWz" = ( +"aWB" = ( /obj/effect/floor_decal/spline/fancy/wood, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aWA" = ( +"aWC" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 4 @@ -28385,14 +28424,14 @@ }, /turf/simulated/floor/carpet, /area/bridge/meeting_room) -"aWB" = ( +"aWD" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aWC" = ( +"aWE" = ( /obj/structure/bed/chair/office/bridge{ icon_state = "bridge"; dir = 8 @@ -28400,7 +28439,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aWD" = ( +"aWF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/orange{ icon_state = "corner_white"; @@ -28408,7 +28447,7 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"aWE" = ( +"aWG" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -28428,7 +28467,7 @@ }, /turf/simulated/floor/plating, /area/bridge/meeting_room) -"aWF" = ( +"aWH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -28439,7 +28478,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aWG" = ( +"aWI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -28452,7 +28491,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aWH" = ( +"aWJ" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -28464,16 +28503,16 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aWI" = ( +"aWK" = ( /turf/simulated/wall, /area/crew_quarters/heads/cryo) -"aWJ" = ( +"aWL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWK" = ( +"aWM" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -28489,18 +28528,18 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWL" = ( +"aWN" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWM" = ( +"aWO" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/bridge/ailobby) -"aWN" = ( +"aWP" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -28520,7 +28559,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aWO" = ( +"aWQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28536,7 +28575,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aWP" = ( +"aWR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -28555,7 +28594,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aWQ" = ( +"aWS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28571,7 +28610,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aWR" = ( +"aWT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28589,7 +28628,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aWS" = ( +"aWU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28606,7 +28645,7 @@ /obj/item/weapon/reagent_containers/glass/bucket, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWT" = ( +"aWV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28622,7 +28661,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWU" = ( +"aWW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28635,7 +28674,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWV" = ( +"aWX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28656,7 +28695,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/janitor) -"aWW" = ( +"aWY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28672,7 +28711,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aWX" = ( +"aWZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28684,7 +28723,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aWY" = ( +"aXa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28694,7 +28733,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aWZ" = ( +"aXb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -28711,7 +28750,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXa" = ( +"aXc" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -28724,7 +28763,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXb" = ( +"aXd" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28743,7 +28782,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXc" = ( +"aXe" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28758,7 +28797,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXd" = ( +"aXf" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28774,7 +28813,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXe" = ( +"aXg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28787,7 +28826,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXf" = ( +"aXh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28811,7 +28850,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aXg" = ( +"aXi" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -28838,7 +28877,7 @@ }, /turf/simulated/floor/plating, /area/engineering/foyer) -"aXh" = ( +"aXj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28866,7 +28905,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXi" = ( +"aXk" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28881,7 +28920,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXj" = ( +"aXl" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28897,7 +28936,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXk" = ( +"aXm" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28917,7 +28956,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXl" = ( +"aXn" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28930,7 +28969,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXm" = ( +"aXo" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28945,7 +28984,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXn" = ( +"aXp" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -28965,36 +29004,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aXo" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) -"aXp" = ( -/obj/machinery/door/airlock/glass, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/port) "aXq" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -29009,8 +29018,38 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/primary/central_one) +/area/hallway/primary/port) "aXr" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/port) +"aXs" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"aXt" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29025,7 +29064,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXs" = ( +"aXu" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29045,7 +29084,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXt" = ( +"aXv" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29059,7 +29098,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXu" = ( +"aXw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29078,7 +29117,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aXv" = ( +"aXx" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable{ d1 = 4; @@ -29093,7 +29132,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXw" = ( +"aXy" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 4; @@ -29108,7 +29147,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXx" = ( +"aXz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29127,7 +29166,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXy" = ( +"aXA" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29141,7 +29180,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXz" = ( +"aXB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29156,7 +29195,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXA" = ( +"aXC" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -29177,7 +29216,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXB" = ( +"aXD" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -29196,26 +29235,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aXC" = ( +"aXE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(57) }, /turf/simulated/floor/plating, /area/store) -"aXD" = ( +"aXF" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aXE" = ( +"aXG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aXF" = ( +"aXH" = ( /turf/simulated/wall, /area/maintenance/substation/command) -"aXG" = ( +"aXI" = ( /obj/machinery/door/airlock/engineering{ name = "Command Substation"; req_one_access = list(11,24) @@ -29228,10 +29267,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"aXH" = ( +"aXJ" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/command) -"aXI" = ( +"aXK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "hopdoor"; @@ -29253,14 +29292,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXJ" = ( +"aXL" = ( /obj/machinery/vending/cart, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXK" = ( +"aXM" = ( /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXL" = ( +"aXN" = ( /obj/machinery/recharger, /obj/structure/table/reinforced, /obj/machinery/ringer{ @@ -29272,14 +29311,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aXM" = ( +"aXO" = ( /turf/simulated/floor/tiled/ramp/bottom, /area/bridge/meeting_room) -"aXN" = ( +"aXP" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXO" = ( +"aXQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -29290,7 +29329,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXP" = ( +"aXR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29301,7 +29340,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXQ" = ( +"aXS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -29315,7 +29354,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXR" = ( +"aXT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -29333,7 +29372,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXS" = ( +"aXU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = null; @@ -29356,7 +29395,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aXT" = ( +"aXV" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -29378,7 +29417,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aXU" = ( +"aXW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -29399,7 +29438,7 @@ }, /turf/simulated/floor/tiled/white, /area/bridge) -"aXV" = ( +"aXX" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -29411,21 +29450,21 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"aXW" = ( +"aXY" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aXX" = ( +"aXZ" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aXY" = ( +"aYa" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -29441,22 +29480,22 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aXZ" = ( +"aYb" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/blue, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aYa" = ( +"aYc" = ( /turf/simulated/wall, /area/bridge/ailobby) -"aYb" = ( +"aYd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, /turf/simulated/floor/plating, /area/bridge/ailobby) -"aYc" = ( +"aYe" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29466,7 +29505,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aYd" = ( +"aYf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -29478,7 +29517,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aYe" = ( +"aYg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29486,7 +29525,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aYf" = ( +"aYh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29496,7 +29535,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/janitor) -"aYg" = ( +"aYi" = ( /obj/machinery/door/airlock/engineering{ name = "Custodial Technician"; req_access = list(26) @@ -29508,7 +29547,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aYh" = ( +"aYj" = ( /obj/machinery/button/remote/blast_door{ id = "mopinator"; name = "Custodial Garage"; @@ -29522,7 +29561,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYi" = ( +"aYk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29534,7 +29573,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYj" = ( +"aYl" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = -32 @@ -29546,7 +29585,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYk" = ( +"aYm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -29559,7 +29598,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYl" = ( +"aYn" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29579,7 +29618,7 @@ /mob/living/bot/secbot/beepsky, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYm" = ( +"aYo" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29592,7 +29631,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYn" = ( +"aYp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29604,7 +29643,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYo" = ( +"aYq" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29616,7 +29655,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYp" = ( +"aYr" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29624,11 +29663,12 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway" + name = "Engineering Hallway"; + req_one_access = null }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aYq" = ( +"aYs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29640,7 +29680,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYr" = ( +"aYt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29648,7 +29688,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYs" = ( +"aYu" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -29660,7 +29700,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYt" = ( +"aYv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29671,20 +29711,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYu" = ( +"aYw" = ( /obj/machinery/ai_status_display{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYv" = ( +"aYx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYw" = ( +"aYy" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Port Corridor - Camera 1"; dir = 1 @@ -29692,10 +29732,10 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/port) -"aYx" = ( +"aYz" = ( /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYy" = ( +"aYA" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29710,18 +29750,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYz" = ( +"aYB" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYA" = ( +"aYC" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYB" = ( +"aYD" = ( /obj/item/device/radio/intercom{ pixel_y = -32 }, @@ -29736,14 +29776,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYC" = ( +"aYE" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYD" = ( +"aYF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -29754,7 +29794,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYE" = ( +"aYG" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -29773,20 +29813,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYF" = ( +"aYH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYG" = ( +"aYI" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aYH" = ( +"aYJ" = ( /obj/machinery/door/airlock/glass, /obj/structure/disposalpipe/segment{ dir = 4 @@ -29796,14 +29836,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYI" = ( +"aYK" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYJ" = ( +"aYL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29813,14 +29853,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYK" = ( +"aYM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYL" = ( +"aYN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29834,7 +29874,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYM" = ( +"aYO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29844,7 +29884,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYN" = ( +"aYP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29854,7 +29894,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYO" = ( +"aYQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29863,7 +29903,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYP" = ( +"aYR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29875,7 +29915,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYQ" = ( +"aYS" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j1"; dir = 4 @@ -29885,7 +29925,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYR" = ( +"aYT" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -29894,7 +29934,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYS" = ( +"aYU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29907,7 +29947,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYT" = ( +"aYV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29917,7 +29957,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYU" = ( +"aYW" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -29931,7 +29971,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYV" = ( +"aYX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29949,7 +29989,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/starboard) -"aYW" = ( +"aYY" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -29964,7 +30004,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aYX" = ( +"aYZ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29976,7 +30016,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aYY" = ( +"aZa" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -29987,7 +30027,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aYZ" = ( +"aZb" = ( /obj/effect/decal/cleanable/generic, /obj/structure/cable{ d1 = 4; @@ -29999,7 +30039,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZa" = ( +"aZc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -30013,7 +30053,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZb" = ( +"aZd" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -30025,7 +30065,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZc" = ( +"aZe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -30040,7 +30080,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"aZd" = ( +"aZf" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -30053,7 +30093,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"aZe" = ( +"aZg" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -30071,7 +30111,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"aZf" = ( +"aZh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -30079,7 +30119,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZg" = ( +"aZi" = ( /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; dir = 4; @@ -30089,13 +30129,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZh" = ( +"aZj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZi" = ( +"aZk" = ( /obj/machinery/photocopier, /obj/machinery/status_display{ density = 0; @@ -30105,7 +30145,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"aZj" = ( +"aZl" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -30117,7 +30157,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZk" = ( +"aZm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -30125,7 +30165,7 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZl" = ( +"aZn" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Bridge"; @@ -30140,11 +30180,11 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZm" = ( +"aZo" = ( /obj/machinery/lapvend, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZn" = ( +"aZp" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -30154,14 +30194,14 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZo" = ( +"aZq" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"aZp" = ( +"aZr" = ( /obj/structure/window/reinforced, /obj/structure/cryofeed{ icon_state = "cryo_rear"; @@ -30169,7 +30209,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aZq" = ( +"aZs" = ( /obj/structure/window/reinforced, /obj/machinery/cryopod{ icon_state = "body_scanner_0"; @@ -30177,7 +30217,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"aZr" = ( +"aZt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -30188,7 +30228,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aZs" = ( +"aZu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -30197,13 +30237,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"aZt" = ( +"aZv" = ( /turf/simulated/open, /area/turbolift/ai_station) -"aZu" = ( +"aZw" = ( /turf/simulated/wall/r_wall, /area/maintenance/maintcentral) -"aZv" = ( +"aZx" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30214,7 +30254,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"aZw" = ( +"aZy" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -30224,19 +30264,19 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"aZx" = ( +"aZz" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Janitor"; dir = 1 }, /turf/simulated/floor/tiled, /area/janitor) -"aZy" = ( +"aZA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/janitor) -"aZz" = ( +"aZB" = ( /obj/structure/closet/crate/trashcart, /obj/machinery/requests_console{ department = "Janitorial"; @@ -30246,12 +30286,12 @@ /obj/item/weapon/storage/bag/trash, /turf/simulated/floor/tiled, /area/janitor) -"aZA" = ( +"aZC" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/janitor) -"aZB" = ( +"aZD" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light{ @@ -30261,10 +30301,10 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/janitor) -"aZC" = ( +"aZE" = ( /turf/simulated/wall, /area/janitor) -"aZD" = ( +"aZF" = ( /obj/machinery/newscaster{ layer = 3.3; pixel_x = 0; @@ -30272,12 +30312,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZE" = ( +"aZG" = ( /obj/effect/floor_decal/corner/yellow, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZF" = ( +"aZH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/yellow{ @@ -30291,7 +30331,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZG" = ( +"aZI" = ( /obj/item/device/radio/intercom{ pixel_y = -32 }, @@ -30301,17 +30341,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZH" = ( +"aZJ" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZI" = ( +"aZK" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZJ" = ( +"aZL" = ( /obj/machinery/atm{ pixel_y = -32 }, @@ -30320,12 +30360,12 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZK" = ( +"aZM" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZL" = ( +"aZN" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30341,10 +30381,10 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/port) -"aZM" = ( +"aZO" = ( /turf/simulated/wall/r_wall, /area/assembly/robotics) -"aZN" = ( +"aZP" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -30352,7 +30392,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZO" = ( +"aZQ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30364,7 +30404,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZP" = ( +"aZR" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -30372,10 +30412,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZQ" = ( +"aZS" = ( /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"aZR" = ( +"aZT" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -30383,7 +30423,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZS" = ( +"aZU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30396,17 +30436,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZT" = ( +"aZV" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"aZU" = ( +"aZW" = ( /turf/simulated/wall, /area/storage/emergency) -"aZV" = ( +"aZX" = ( /obj/machinery/door/airlock{ name = "Starboard Emergency Storage"; req_one_access = null @@ -30419,10 +30459,10 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"aZW" = ( +"aZY" = ( /turf/simulated/wall, /area/medical/surgeryprep) -"aZX" = ( +"aZZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -30436,7 +30476,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"aZY" = ( +"baa" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -30446,7 +30486,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"aZZ" = ( +"bab" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -30460,7 +30500,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"baa" = ( +"bac" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -30469,11 +30509,11 @@ /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, /area/medical/icu) -"bab" = ( +"bad" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/icu) -"bac" = ( +"bae" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -30481,10 +30521,10 @@ /obj/machinery/vending/cigarette, /turf/simulated/floor/tiled, /area/medical/icu) -"bad" = ( +"baf" = ( /turf/simulated/wall, /area/medical/icu) -"bae" = ( +"bag" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -30506,48 +30546,23 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"baf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/reception) -"bag" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 1; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/reception) "bah" = ( -/turf/simulated/wall, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, /area/medical/reception) "bai" = ( /obj/structure/grille, @@ -30561,6 +30576,31 @@ dir = 4 }, /obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 1; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/reception) +"baj" = ( +/turf/simulated/wall, +/area/medical/reception) +"bak" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/machinery/door/firedoor, /obj/structure/sign/greencross, /obj/machinery/door/blast/shutters{ density = 0; @@ -30572,7 +30612,7 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"baj" = ( +"bal" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -30589,7 +30629,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bak" = ( +"bam" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -30601,7 +30641,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bal" = ( +"ban" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -30627,7 +30667,7 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"bam" = ( +"bao" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -30640,7 +30680,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"ban" = ( +"bap" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -30664,7 +30704,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bao" = ( +"baq" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Command" @@ -30676,13 +30716,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bap" = ( +"bar" = ( /obj/machinery/newscaster{ pixel_x = -30 }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"baq" = ( +"bas" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -30690,34 +30730,34 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bar" = ( +"bat" = ( /obj/structure/table/wood, /obj/machinery/computer/skills, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bas" = ( +"bau" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bat" = ( +"bav" = ( /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bau" = ( +"baw" = ( /obj/machinery/light_switch{ pixel_x = 32 }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"bav" = ( +"bax" = ( /turf/simulated/wall, /area/bridge/meeting_room) -"baw" = ( +"bay" = ( /obj/machinery/door/airlock{ name = "Restroom" }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bax" = ( +"baz" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j1" @@ -30731,7 +30771,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bay" = ( +"baA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -30754,7 +30794,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"baz" = ( +"baB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -30775,7 +30815,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"baA" = ( +"baC" = ( /obj/machinery/door/airlock/command{ name = "Cryogenic Storage"; req_access = list(19) @@ -30797,7 +30837,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/cryo) -"baB" = ( +"baD" = ( /obj/machinery/light_switch{ pixel_x = -24; pixel_y = 32 @@ -30818,7 +30858,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baC" = ( +"baE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -30836,7 +30876,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baD" = ( +"baF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -30850,15 +30890,15 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baE" = ( +"baG" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"baF" = ( +"baH" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"baG" = ( +"baI" = ( /obj/machinery/door/airlock/engineering{ name = "Custodial Closet"; req_access = list(26) @@ -30867,10 +30907,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"baH" = ( +"baJ" = ( /turf/simulated/wall, /area/storage/tech) -"baI" = ( +"baK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ name = "Tech Storage"; @@ -30885,10 +30925,10 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"baJ" = ( +"baL" = ( /turf/simulated/wall, /area/maintenance/research_port) -"baK" = ( +"baM" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -30899,17 +30939,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"baL" = ( +"baN" = ( /turf/simulated/wall, /area/assembly/robotics) -"baM" = ( +"baO" = ( /obj/structure/morgue, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/assembly/robotics) -"baN" = ( +"baP" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Morgue" }, @@ -30921,7 +30961,7 @@ temperature = 278 }, /area/assembly/robotics) -"baO" = ( +"baQ" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -30930,13 +30970,13 @@ temperature = 278 }, /area/assembly/robotics) -"baP" = ( +"baR" = ( /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/assembly/robotics) -"baQ" = ( +"baS" = ( /obj/machinery/door/airlock/research{ desc = "It opens and closes. Leads to the Robotics Morgue"; name = "Robotics Morgue"; @@ -30949,7 +30989,7 @@ temperature = 278 }, /area/assembly/robotics) -"baR" = ( +"baT" = ( /obj/machinery/button/windowtint{ id = "CybGlass"; pixel_x = 0; @@ -30957,7 +30997,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baS" = ( +"baU" = ( /obj/machinery/computer/operating{ name = "Robotics Operating Computer" }, @@ -30970,7 +31010,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baT" = ( +"baV" = ( /obj/machinery/optable{ desc = "Used for advanced medical procedures, such as removing brains for cyborgification. Also used to repair unlawed synthetics."; name = "Robotics Operating Table" @@ -30984,7 +31024,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baU" = ( +"baW" = ( /obj/structure/table/standard, /obj/item/weapon/bonegel, /obj/item/weapon/bonesetter, @@ -31005,7 +31045,7 @@ /obj/item/weapon/hemostat, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"baV" = ( +"baX" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -31014,7 +31054,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"baW" = ( +"baY" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31025,7 +31065,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"baX" = ( +"baZ" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; @@ -31033,7 +31073,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"baY" = ( +"bba" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -31048,16 +31088,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"baZ" = ( +"bbb" = ( /turf/simulated/floor/plating, /area/turbolift/main_station) -"bba" = ( +"bbc" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bbb" = ( +"bbd" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31071,7 +31111,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bbc" = ( +"bbe" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -31080,7 +31120,7 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"bbd" = ( +"bbf" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -31088,7 +31128,7 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"bbe" = ( +"bbg" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -31105,11 +31145,11 @@ }, /turf/simulated/floor/plating, /area/storage/emergency) -"bbf" = ( +"bbh" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bbg" = ( +"bbi" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -31117,7 +31157,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bbh" = ( +"bbj" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -31128,12 +31168,12 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bbi" = ( +"bbk" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/medical/icu) -"bbj" = ( +"bbl" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -31142,7 +31182,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bbk" = ( +"bbm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -31167,7 +31207,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bbl" = ( +"bbn" = ( /obj/structure/window/reinforced, /obj/structure/disposaloutlet{ icon_state = "outlet"; @@ -31176,7 +31216,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/plating, /area/medical/reception) -"bbm" = ( +"bbo" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/door/window{ @@ -31193,13 +31233,13 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bbn" = ( +"bbp" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/medical/reception) -"bbo" = ( +"bbq" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/computer/crew, /obj/machinery/ringer{ @@ -31211,14 +31251,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bbp" = ( +"bbr" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/item/weapon/folder/white, /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/medical/reception) -"bbq" = ( +"bbs" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -31228,11 +31268,11 @@ /obj/machinery/computer/med_data/laptop, /turf/simulated/floor/tiled, /area/medical/reception) -"bbr" = ( +"bbt" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbs" = ( +"bbu" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -31240,18 +31280,18 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbt" = ( +"bbv" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbu" = ( +"bbw" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbv" = ( +"bbx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -31267,17 +31307,17 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"bbw" = ( +"bby" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/vending/snack, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbx" = ( +"bbz" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/vending/coffee, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bby" = ( +"bbA" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/disposal, /obj/machinery/alarm{ @@ -31286,7 +31326,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbz" = ( +"bbB" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/power/apc{ dir = 1; @@ -31305,7 +31345,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbA" = ( +"bbC" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair, /obj/machinery/light{ @@ -31316,7 +31356,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbB" = ( +"bbD" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair, /obj/structure/noticeboard{ @@ -31325,7 +31365,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbC" = ( +"bbE" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair, /obj/machinery/newscaster{ @@ -31333,7 +31373,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbD" = ( +"bbF" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/table/standard, /obj/machinery/firealarm/east, @@ -31343,7 +31383,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bbE" = ( +"bbG" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31360,7 +31400,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bbF" = ( +"bbH" = ( /obj/machinery/door/airlock/engineering{ name = "Command Substation"; req_one_access = list(11,24) @@ -31373,7 +31413,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bbG" = ( +"bbI" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -31386,13 +31426,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bbH" = ( +"bbJ" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Command Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/command) -"bbI" = ( +"bbK" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -31400,7 +31440,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbJ" = ( +"bbL" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, @@ -31411,13 +31451,13 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbK" = ( +"bbM" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /obj/item/weapon/stamp/hop, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbL" = ( +"bbN" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -31434,7 +31474,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bbM" = ( +"bbO" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -31453,7 +31493,7 @@ /mob/living/simple_animal/corgi/Ian, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"bbN" = ( +"bbP" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Restroom"; dir = 4 @@ -31466,7 +31506,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bbO" = ( +"bbQ" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -31479,20 +31519,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bbP" = ( +"bbR" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, /area/bridge) -"bbQ" = ( +"bbS" = ( /obj/machinery/photocopier, /turf/simulated/floor/carpet, /area/bridge) -"bbR" = ( +"bbT" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/wood, /area/bridge) -"bbS" = ( +"bbU" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -31508,7 +31548,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bbT" = ( +"bbV" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/newscaster/security_unit{ pixel_x = -32 @@ -31520,12 +31560,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bbU" = ( +"bbW" = ( /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bbV" = ( +"bbX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/device/radio/intercom{ dir = 8; @@ -31534,7 +31574,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bbW" = ( +"bbY" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -31542,21 +31582,21 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bbX" = ( +"bbZ" = ( /obj/structure/sink/kitchen{ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bbY" = ( +"bca" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"bbZ" = ( +"bcb" = ( /turf/simulated/floor/tiled/dark, /area/janitor) -"bca" = ( +"bcc" = ( /obj/item/device/radio/intercom{ desc = "Talk... listen through this."; name = "Station Intercom (Brig Radio)"; @@ -31566,7 +31606,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bcb" = ( +"bcd" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/industrial/outline/yellow, @@ -31575,14 +31615,14 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bcc" = ( +"bce" = ( /turf/simulated/wall/r_wall, /area/storage/tech) -"bcd" = ( +"bcf" = ( /obj/machinery/vending/assist, /turf/simulated/floor/plating, /area/storage/tech) -"bce" = ( +"bcg" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -31598,7 +31638,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bcf" = ( +"bch" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -31610,13 +31650,13 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bcg" = ( +"bci" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/plating, /area/storage/tech) -"bch" = ( +"bcj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -31628,7 +31668,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bci" = ( +"bck" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -31639,7 +31679,7 @@ /obj/item/device/analyzer, /turf/simulated/floor/plating, /area/storage/tech) -"bcj" = ( +"bcl" = ( /obj/machinery/alarm/cold{ dir = 1; pixel_y = -22 @@ -31649,7 +31689,7 @@ temperature = 278 }, /area/assembly/robotics) -"bck" = ( +"bcm" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -31658,7 +31698,7 @@ temperature = 278 }, /area/assembly/robotics) -"bcl" = ( +"bcn" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 8 @@ -31668,7 +31708,7 @@ temperature = 278 }, /area/assembly/robotics) -"bcm" = ( +"bco" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -31677,14 +31717,14 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bcn" = ( +"bcp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bco" = ( +"bcq" = ( /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bcp" = ( +"bcr" = ( /obj/structure/table/standard, /obj/item/device/mmi, /obj/item/device/mmi, @@ -31694,7 +31734,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bcq" = ( +"bcs" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -31711,14 +31751,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bcr" = ( +"bct" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcs" = ( +"bcu" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31731,7 +31771,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bct" = ( +"bcv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -31741,7 +31781,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcu" = ( +"bcw" = ( /obj/structure/sign/directions/engineering{ dir = 1; icon_state = "direction_eng"; @@ -31780,24 +31820,24 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bcv" = ( +"bcx" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcw" = ( +"bcy" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/turbolift/main_station) -"bcx" = ( +"bcz" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcy" = ( +"bcA" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -31809,22 +31849,22 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcz" = ( +"bcB" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bcA" = ( +"bcC" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/storage/emergency) -"bcB" = ( +"bcD" = ( /obj/machinery/space_heater, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/storage/emergency) -"bcC" = ( +"bcE" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -31839,13 +31879,13 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/storage/emergency) -"bcD" = ( +"bcF" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcE" = ( +"bcG" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -31853,10 +31893,10 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcF" = ( +"bcH" = ( /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcG" = ( +"bcI" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -31869,12 +31909,12 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bcH" = ( +"bcJ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/medical/icu) -"bcI" = ( +"bcK" = ( /obj/structure/table/standard, /obj/item/weapon/material/ashtray/plastic, /obj/machinery/light/small{ @@ -31884,7 +31924,7 @@ /obj/machinery/recharger, /turf/simulated/floor/tiled, /area/medical/icu) -"bcJ" = ( +"bcL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -31905,7 +31945,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bcK" = ( +"bcM" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment, @@ -31927,11 +31967,11 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcL" = ( +"bcN" = ( /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bcM" = ( +"bcO" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment{ dir = 1; @@ -31939,14 +31979,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcN" = ( +"bcP" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcO" = ( +"bcQ" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, @@ -31956,7 +31996,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcP" = ( +"bcR" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -31985,7 +32025,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bcQ" = ( +"bcS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -31996,7 +32036,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcR" = ( +"bcT" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -32011,7 +32051,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcS" = ( +"bcU" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -32027,26 +32067,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) -"bcU" = ( -/obj/effect/floor_decal/corner/green/diagonal, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "bcV" = ( -/obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -32056,12 +32077,12 @@ /area/medical/reception) "bcW" = ( /obj/effect/floor_decal/corner/green/diagonal, +/obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/medical/reception) "bcX" = ( @@ -32071,11 +32092,30 @@ d2 = 8; icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/reception) "bcY" = ( /obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"bcZ" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/reception) +"bda" = ( +/obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -32083,11 +32123,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bcZ" = ( +"bdb" = ( /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bda" = ( +"bdc" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/door/blast/shutters{ @@ -32104,7 +32144,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bdb" = ( +"bdd" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -32116,7 +32156,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bdc" = ( +"bde" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Head of Personnel's Office"; dir = 1 @@ -32128,7 +32168,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdd" = ( +"bdf" = ( /obj/structure/bed/chair/comfy/brown{ dir = 4 }, @@ -32140,7 +32180,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bde" = ( +"bdg" = ( /obj/structure/table/wood, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, @@ -32151,7 +32191,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdf" = ( +"bdh" = ( /obj/machinery/button/windowtint{ id = "hop"; pixel_y = -24; @@ -32175,11 +32215,11 @@ /obj/machinery/account_database, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdg" = ( +"bdi" = ( /obj/machinery/papershredder, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) -"bdh" = ( +"bdj" = ( /obj/machinery/computer/security/mining, /obj/machinery/atm{ pixel_x = 32 @@ -32190,10 +32230,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop) -"bdi" = ( +"bdk" = ( /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bdj" = ( +"bdl" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -32207,7 +32247,7 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bdk" = ( +"bdm" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Auxiliary Office"; dir = 4 @@ -32217,7 +32257,7 @@ }, /turf/simulated/floor/wood, /area/bridge) -"bdl" = ( +"bdn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -32227,7 +32267,7 @@ }, /turf/simulated/floor/carpet, /area/bridge) -"bdm" = ( +"bdo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -32240,7 +32280,7 @@ }, /turf/simulated/floor/wood, /area/bridge) -"bdn" = ( +"bdp" = ( /obj/machinery/door/airlock/glass_command{ id_tag = ""; name = "Auxiliary Office"; @@ -32258,7 +32298,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/bridge) -"bdo" = ( +"bdq" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -32280,7 +32320,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bdp" = ( +"bdr" = ( /obj/machinery/light_switch{ pixel_y = -24 }, @@ -32300,11 +32340,11 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bdq" = ( +"bds" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bdr" = ( +"bdt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -32315,19 +32355,19 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"bds" = ( +"bdu" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bdt" = ( +"bdv" = ( /obj/structure/mopbucket, /obj/item/weapon/mop, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdu" = ( +"bdw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -32335,19 +32375,19 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdv" = ( +"bdx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdw" = ( +"bdy" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"bdx" = ( +"bdz" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32362,13 +32402,13 @@ }, /turf/simulated/floor/tiled, /area/storage/tech) -"bdy" = ( +"bdA" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Secure Technical Storage" }, /turf/simulated/floor/tiled, /area/storage/tech) -"bdz" = ( +"bdB" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -32376,16 +32416,16 @@ }, /turf/simulated/wall/r_wall, /area/storage/tech) -"bdA" = ( +"bdC" = ( /turf/simulated/floor/plating, /area/storage/tech) -"bdB" = ( +"bdD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/plating, /area/storage/tech) -"bdC" = ( +"bdE" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32407,7 +32447,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bdD" = ( +"bdF" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32426,7 +32466,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bdE" = ( +"bdG" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -32439,11 +32479,11 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/storage/tech) -"bdF" = ( +"bdH" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdG" = ( +"bdI" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -32461,7 +32501,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdH" = ( +"bdJ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32479,7 +32519,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdI" = ( +"bdK" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32497,7 +32537,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdJ" = ( +"bdL" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32511,7 +32551,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdK" = ( +"bdM" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32526,7 +32566,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdL" = ( +"bdN" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -32542,7 +32582,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bdM" = ( +"bdO" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -32550,7 +32590,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdN" = ( +"bdP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -32558,13 +32598,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdO" = ( +"bdQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdP" = ( +"bdR" = ( /obj/structure/closet/secure_closet/medical2{ req_access = list(29) }, @@ -32577,7 +32617,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bdQ" = ( +"bdS" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -32590,14 +32630,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bdR" = ( +"bdT" = ( /obj/machinery/light{ dir = 4; status = 0 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bdS" = ( +"bdU" = ( /obj/structure/sign/directions/evac{ dir = 4; icon_state = "direction_evac"; @@ -32620,7 +32660,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bdT" = ( +"bdV" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -32628,7 +32668,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bdU" = ( +"bdW" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -32636,10 +32676,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bdV" = ( +"bdX" = ( /turf/simulated/wall, /area/medical/surgerywing) -"bdW" = ( +"bdY" = ( /obj/machinery/door/airlock{ autoclose = 0; icon_state = "door_open"; @@ -32647,11 +32687,11 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bdX" = ( +"bdZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bdY" = ( +"bea" = ( /obj/structure/bed/chair/comfy/teal{ dir = 8; icon_state = "comfychair_preview" @@ -32668,7 +32708,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bdZ" = ( +"beb" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -32676,7 +32716,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bea" = ( +"bec" = ( /obj/machinery/atm{ pixel_y = -32 }, @@ -32686,13 +32726,13 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"beb" = ( +"bed" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/icu) -"bec" = ( +"bee" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -32714,7 +32754,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bed" = ( +"bef" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/disposalpipe/segment, @@ -32722,7 +32762,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/medical/reception) -"bee" = ( +"beg" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/bed/chair/office/light{ dir = 8 @@ -32730,7 +32770,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/medical/reception) -"bef" = ( +"beh" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/requests_console{ department = "Medical Bay"; @@ -32740,7 +32780,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"beg" = ( +"bei" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32748,14 +32788,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"beh" = ( +"bej" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/reception) -"bei" = ( +"bek" = ( /obj/machinery/door/window{ base_state = "left"; dir = 4; @@ -32766,7 +32806,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bej" = ( +"bel" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 4 @@ -32789,7 +32829,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bek" = ( +"bem" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -32810,7 +32850,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bel" = ( +"ben" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -32831,7 +32871,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bem" = ( +"beo" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 8 @@ -32851,7 +32891,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"ben" = ( +"bep" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32865,7 +32905,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"beo" = ( +"beq" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -32878,7 +32918,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bep" = ( +"ber" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -32894,7 +32934,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"beq" = ( +"bes" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -32908,7 +32948,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"ber" = ( +"bet" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/bed/chair{ dir = 1 @@ -32918,14 +32958,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bes" = ( +"beu" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bet" = ( +"bev" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/flora/pottedplant/random, /obj/item/device/radio/intercom{ @@ -32935,7 +32975,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"beu" = ( +"bew" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -32954,7 +32994,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bev" = ( +"bex" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -32971,7 +33011,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bew" = ( +"bey" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -32995,7 +33035,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bex" = ( +"bez" = ( /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -33007,7 +33047,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bey" = ( +"beA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(57) @@ -33022,13 +33062,13 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/hop) -"bez" = ( +"beB" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"beA" = ( +"beC" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -33041,7 +33081,7 @@ }, /turf/simulated/floor/wood, /area/bridge) -"beB" = ( +"beD" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -33053,12 +33093,12 @@ }, /turf/simulated/floor/carpet, /area/bridge) -"beC" = ( +"beE" = ( /obj/structure/table/wood, /obj/item/weapon/folder/blue, /turf/simulated/floor/wood, /area/bridge) -"beD" = ( +"beF" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33075,7 +33115,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"beE" = ( +"beG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_command{ id_tag = ""; @@ -33084,14 +33124,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"beF" = ( +"beH" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"beG" = ( +"beI" = ( /obj/machinery/disposal, /obj/machinery/camera/network/command{ c_tag = "Bridge - Command Dormitories"; @@ -33103,23 +33143,23 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/carpet, /area/crew_quarters/heads/cryo) -"beH" = ( +"beJ" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"beI" = ( +"beK" = ( /obj/structure/closet/jcloset, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"beJ" = ( +"beL" = ( /obj/structure/table/steel, /obj/item/watertank/janitor, /turf/simulated/floor/tiled/dark, /area/janitor) -"beK" = ( +"beM" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/mousetraps{ pixel_x = 4; @@ -33136,17 +33176,17 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"beL" = ( +"beN" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /obj/structure/closet/crate/software_backup, /turf/simulated/floor/tiled, /area/storage/tech) -"beM" = ( +"beO" = ( /turf/simulated/floor/tiled, /area/storage/tech) -"beN" = ( +"beP" = ( /obj/machinery/door/airlock/highsecurity{ name = "Secure Tech Storage"; req_access = list(19,23) @@ -33154,7 +33194,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/storage/tech) -"beO" = ( +"beQ" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -33166,7 +33206,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"beP" = ( +"beR" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -33182,7 +33222,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"beQ" = ( +"beS" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -33197,7 +33237,7 @@ /obj/item/device/multitool, /turf/simulated/floor/plating, /area/storage/tech) -"beR" = ( +"beT" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -33214,7 +33254,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beS" = ( +"beU" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -33232,23 +33272,23 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beT" = ( +"beV" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beU" = ( +"beW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beV" = ( +"beX" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"beW" = ( +"beY" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -33263,7 +33303,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"beX" = ( +"beZ" = ( /obj/machinery/conveyor{ backwards = 4; desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab."; @@ -33275,7 +33315,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"beY" = ( +"bfa" = ( /obj/machinery/conveyor{ backwards = 4; desc = "A conveyor belt. Used to ferry synthetic bodies to the surgery lab."; @@ -33284,7 +33324,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"beZ" = ( +"bfb" = ( /obj/structure/plasticflaps, /obj/machinery/door/firedoor, /obj/machinery/conveyor{ @@ -33295,7 +33335,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bfa" = ( +"bfc" = ( /obj/machinery/conveyor{ backwards = 10; dir = 5; @@ -33303,19 +33343,19 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bfb" = ( +"bfd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bfc" = ( +"bfe" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "RobotSurg" }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bfd" = ( +"bff" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -33331,14 +33371,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bfe" = ( +"bfg" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bff" = ( +"bfh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -33356,11 +33396,11 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bfg" = ( +"bfi" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/turbolift/main_station) -"bfh" = ( +"bfj" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, @@ -33374,7 +33414,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bfi" = ( +"bfk" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -33388,7 +33428,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bfj" = ( +"bfl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -33397,7 +33437,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bfk" = ( +"bfm" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -33414,7 +33454,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bfl" = ( +"bfn" = ( /obj/structure/table/standard, /obj/item/weapon/scalpel, /obj/item/weapon/circular_saw{ @@ -33426,7 +33466,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfm" = ( +"bfo" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33437,7 +33477,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfn" = ( +"bfp" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33450,7 +33490,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfo" = ( +"bfq" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33465,7 +33505,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfp" = ( +"bfr" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33490,7 +33530,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfq" = ( +"bfs" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -33498,7 +33538,7 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bfr" = ( +"bft" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -33507,11 +33547,11 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bfs" = ( +"bfu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bft" = ( +"bfv" = ( /obj/structure/bed/chair/comfy/teal{ dir = 8; icon_state = "comfychair_preview" @@ -33521,7 +33561,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bfu" = ( +"bfw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -33536,7 +33576,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/reception) -"bfv" = ( +"bfx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -33550,7 +33590,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfw" = ( +"bfy" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/light{ dir = 8 @@ -33558,7 +33598,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/medical/reception) -"bfx" = ( +"bfz" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -33588,7 +33628,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bfy" = ( +"bfA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -33603,20 +33643,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfz" = ( +"bfB" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfA" = ( +"bfC" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfB" = ( +"bfD" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -33628,7 +33668,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfC" = ( +"bfE" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33642,7 +33682,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfD" = ( +"bfF" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33656,7 +33696,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfE" = ( +"bfG" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33670,7 +33710,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfF" = ( +"bfH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass{ id_tag = "waiting_door"; @@ -33680,12 +33720,12 @@ /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfG" = ( +"bfI" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bfH" = ( +"bfJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -33703,13 +33743,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/reception) -"bfI" = ( +"bfK" = ( /turf/simulated/wall/r_wall, /area/medical/reception) -"bfJ" = ( +"bfL" = ( /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bfK" = ( +"bfM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -33725,7 +33765,7 @@ }, /turf/simulated/floor/plating, /area/medical/chemistry) -"bfL" = ( +"bfN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -33744,7 +33784,7 @@ }, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bfM" = ( +"bfO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -33762,7 +33802,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfN" = ( +"bfP" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -33779,28 +33819,28 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) -"bfP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/maintcentral) "bfQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) "bfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/maintcentral) +"bfT" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -33811,24 +33851,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bfS" = ( +"bfU" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bfT" = ( +"bfV" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/bridge/meeting_room) -"bfU" = ( +"bfW" = ( /obj/machinery/newscaster{ pixel_x = -30 }, /turf/simulated/floor/wood, /area/bridge) -"bfV" = ( +"bfX" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Bridge"; @@ -33838,13 +33878,13 @@ }, /turf/simulated/floor/carpet, /area/bridge) -"bfW" = ( +"bfY" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/wood, /area/bridge) -"bfX" = ( +"bfZ" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -33864,7 +33904,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/bridge) -"bfY" = ( +"bga" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -33877,7 +33917,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/bridge) -"bfZ" = ( +"bgb" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -33889,7 +33929,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/bridge) -"bga" = ( +"bgc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ req_access = list(19) @@ -33904,7 +33944,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cryo) -"bgb" = ( +"bgd" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/button/remote/airlock{ id = "bunker1"; @@ -33915,7 +33955,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bgc" = ( +"bge" = ( /obj/machinery/button/remote/airlock{ id = "bunker1"; name = "Bunker Safety Bolts"; @@ -33928,7 +33968,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bgd" = ( +"bgf" = ( /obj/structure/closet, /obj/item/weapon/bikehorn, /obj/effect/floor_decal/industrial/warning{ @@ -33936,14 +33976,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bge" = ( +"bgg" = ( /obj/structure/ladder{ icon_state = "ladder01"; pixel_y = 16 }, /turf/simulated/open, /area/maintenance/maintcentral) -"bgf" = ( +"bgh" = ( /obj/structure/mopbucket, /obj/item/weapon/mop, /obj/effect/floor_decal/industrial/outline/yellow, @@ -33952,7 +33992,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bgg" = ( +"bgi" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/lights/mixed{ pixel_x = 4; @@ -33976,7 +34016,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bgh" = ( +"bgj" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -33991,11 +34031,11 @@ }, /turf/simulated/floor/tiled, /area/storage/tech) -"bgi" = ( +"bgk" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/storage/tech) -"bgj" = ( +"bgl" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34016,7 +34056,7 @@ /obj/item/weapon/circuitboard/arcade/orion_trail, /turf/simulated/floor/plating, /area/storage/tech) -"bgk" = ( +"bgm" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34033,7 +34073,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bgl" = ( +"bgn" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34045,7 +34085,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bgm" = ( +"bgo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -34058,7 +34098,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bgn" = ( +"bgp" = ( /obj/machinery/conveyor{ backwards = 1; id = "RobotSurg" @@ -34067,37 +34107,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bgo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/polarized{ - dir = 8; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CybGlass" - }, -/obj/structure/window/reinforced/polarized{ - id = "CybGlass" - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - dir = 4; - id = "CybGlass" - }, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"bgp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - desc = "It opens and closes. "; - name = "Cyborgification Bay"; - req_access = list(29) - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) "bgq" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -34112,9 +34121,40 @@ id = "CybGlass" }, /obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "CybGlass" + }, /turf/simulated/floor/plating, /area/assembly/robotics) "bgr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/research{ + desc = "It opens and closes. "; + name = "Cyborgification Bay"; + req_access = list(29) + }, +/turf/simulated/floor/tiled/white, +/area/assembly/robotics) +"bgs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "CybGlass" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CybGlass" + }, +/obj/structure/window/reinforced/polarized{ + id = "CybGlass" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/assembly/robotics) +"bgt" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -34127,13 +34167,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bgs" = ( +"bgu" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgt" = ( +"bgv" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -34144,7 +34184,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgu" = ( +"bgw" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; @@ -34152,18 +34192,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgv" = ( +"bgx" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgw" = ( +"bgy" = ( /obj/turbolift_map_holder/aurora/civilian, /turf/simulated/floor/plating, /area/turbolift/main_station) -"bgx" = ( +"bgz" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -34179,35 +34219,35 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bgy" = ( +"bgA" = ( /obj/structure/table/standard, /obj/item/weapon/cautery, /obj/item/weapon/hemostat, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgz" = ( +"bgB" = ( /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgA" = ( +"bgC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgB" = ( +"bgD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgC" = ( +"bgE" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgD" = ( +"bgF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -34216,7 +34256,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bgE" = ( +"bgG" = ( /obj/structure/bed/chair/comfy/teal{ dir = 4; icon_state = "comfychair_preview" @@ -34227,7 +34267,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgF" = ( +"bgH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -34236,7 +34276,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgG" = ( +"bgI" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -34246,7 +34286,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgH" = ( +"bgJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -34255,7 +34295,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgI" = ( +"bgK" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -34263,7 +34303,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bgJ" = ( +"bgL" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -34273,7 +34313,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgK" = ( +"bgM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -34281,7 +34321,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgL" = ( +"bgN" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -34289,7 +34329,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgM" = ( +"bgO" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -34303,7 +34343,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgN" = ( +"bgP" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -34315,7 +34355,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgO" = ( +"bgQ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -34332,7 +34372,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bgP" = ( +"bgR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "Reception Desk"; @@ -34347,7 +34387,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bgQ" = ( +"bgS" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -34357,14 +34397,14 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bgR" = ( +"bgT" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bgS" = ( +"bgU" = ( /obj/structure/table/standard, /obj/machinery/door/window{ base_state = "left"; @@ -34378,7 +34418,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/medical/reception) -"bgT" = ( +"bgV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -34391,22 +34431,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgU" = ( +"bgW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgV" = ( +"bgX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgW" = ( +"bgY" = ( /turf/simulated/floor/tiled/white, /area/medical/reception) -"bgX" = ( +"bgZ" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; @@ -34414,7 +34454,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bgY" = ( +"bha" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34424,7 +34464,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bgZ" = ( +"bhb" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34434,7 +34474,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bha" = ( +"bhc" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34445,7 +34485,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhb" = ( +"bhd" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34459,7 +34499,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhc" = ( +"bhe" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34472,7 +34512,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhd" = ( +"bhf" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34485,7 +34525,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhe" = ( +"bhg" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 5 @@ -34495,7 +34535,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bhf" = ( +"bhh" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, /obj/structure/noticeboard{ @@ -34531,7 +34571,7 @@ }, /turf/simulated/floor/tiled, /area/medical/chemistry) -"bhg" = ( +"bhi" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -34549,21 +34589,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bhh" = ( +"bhj" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bhi" = ( +"bhk" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bhj" = ( +"bhl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -34579,12 +34619,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhk" = ( +"bhm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhl" = ( +"bhn" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -34598,7 +34638,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bhm" = ( +"bho" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -34614,7 +34654,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bhn" = ( +"bhp" = ( /obj/machinery/door/airlock/glass_command{ id_tag = ""; name = "Bridge"; @@ -34622,7 +34662,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bho" = ( +"bhq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency{ @@ -34632,22 +34672,22 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhp" = ( +"bhr" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhq" = ( +"bhs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhr" = ( +"bht" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhs" = ( +"bhu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ id_tag = "bunker1"; @@ -34656,7 +34696,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bht" = ( +"bhv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -34664,13 +34704,13 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhu" = ( +"bhw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bhv" = ( +"bhx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -34679,29 +34719,29 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bhw" = ( +"bhy" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/vendors, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/janitor) -"bhx" = ( +"bhz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/vending/tool, /turf/simulated/floor/tiled/dark, /area/janitor) -"bhy" = ( +"bhA" = ( /obj/structure/closet/l3closet/janitor, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/janitor) -"bhz" = ( +"bhB" = ( /obj/item/weapon/aicard, /obj/item/weapon/aiModule/reset, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/storage/tech) -"bhA" = ( +"bhC" = ( /obj/item/weapon/screwdriver{ pixel_y = 16 }, @@ -34710,7 +34750,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/storage/tech) -"bhB" = ( +"bhD" = ( /obj/item/stack/cable_coil{ pixel_x = -3; pixel_y = 3 @@ -34723,7 +34763,7 @@ /obj/structure/table/steel, /turf/simulated/floor/plating, /area/storage/tech) -"bhC" = ( +"bhE" = ( /obj/item/weapon/module/power_control, /obj/item/weapon/airlock_electronics, /obj/structure/table/steel, @@ -34733,7 +34773,7 @@ }, /turf/simulated/floor/plating, /area/storage/tech) -"bhD" = ( +"bhF" = ( /obj/machinery/cell_charger{ pixel_y = 5 }, @@ -34741,7 +34781,7 @@ /obj/structure/table/steel, /turf/simulated/floor/plating, /area/storage/tech) -"bhE" = ( +"bhG" = ( /obj/item/device/flashlight{ pixel_x = 1; pixel_y = 5 @@ -34760,7 +34800,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/storage/tech) -"bhF" = ( +"bhH" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -34772,7 +34812,7 @@ /obj/item/weapon/stock_parts/capacitor, /turf/simulated/floor/plating, /area/storage/tech) -"bhG" = ( +"bhI" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -34794,14 +34834,14 @@ /obj/item/device/integrated_electronics/debugger, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhH" = ( +"bhJ" = ( /obj/machinery/conveyor{ blood_color = 1; id = "RobotSurg" }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhI" = ( +"bhK" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "RobotSurg" @@ -34811,7 +34851,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhJ" = ( +"bhL" = ( /obj/machinery/disposal, /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Manufacturing" @@ -34821,7 +34861,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhK" = ( +"bhM" = ( /obj/structure/table/rack{ pixel_x = 3; pixel_y = 3 @@ -34852,7 +34892,7 @@ /obj/item/clothing/head/welding, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhL" = ( +"bhN" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -34860,24 +34900,24 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhM" = ( +"bhO" = ( /obj/machinery/vending/robotics{ products = list(/obj/item/clothing/suit/storage/toggle/labcoat = 4, /obj/item/clothing/under/rank/roboticist = 4, /obj/item/stack/cable_coil = 4, /obj/item/weapon/cell/high = 12, /obj/item/device/assembly/prox_sensor = 8, /obj/item/device/assembly/signaler = 3, /obj/item/device/healthanalyzer = 8, /obj/item/weapon/scalpel = 2, /obj/item/weapon/circular_saw = 2, /obj/item/weapon/tank/anesthetic = 2, /obj/item/clothing/mask/breath/medical = 5, /obj/item/weapon/screwdriver = 5, /obj/item/weapon/crowbar = 5) }, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhN" = ( +"bhP" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bhO" = ( +"bhQ" = ( /obj/machinery/alarm{ pixel_y = 23 }, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bhP" = ( +"bhR" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -34889,7 +34929,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bhQ" = ( +"bhS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -34898,7 +34938,7 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bhR" = ( +"bhT" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/machinery/light{ @@ -34914,7 +34954,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bhS" = ( +"bhU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -34926,14 +34966,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"bhT" = ( +"bhV" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bhU" = ( +"bhW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -34949,7 +34989,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bhV" = ( +"bhX" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -34964,7 +35004,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bhW" = ( +"bhY" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, @@ -34982,7 +35022,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bhX" = ( +"bhZ" = ( /obj/structure/table/standard, /obj/item/weapon/retractor, /obj/machinery/light{ @@ -34990,11 +35030,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bhY" = ( +"bia" = ( /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bhZ" = ( +"bib" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -35002,7 +35042,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bia" = ( +"bic" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -35011,14 +35051,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bib" = ( +"bid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bic" = ( +"bie" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -35030,7 +35070,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bid" = ( +"bif" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 2; @@ -35041,14 +35081,14 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bie" = ( +"big" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bif" = ( +"bih" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -35061,7 +35101,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"big" = ( +"bii" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -35076,7 +35116,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bih" = ( +"bij" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -35090,7 +35130,7 @@ }, /turf/simulated/floor/tiled, /area/medical/surgeryprep) -"bii" = ( +"bik" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 9 @@ -35103,7 +35143,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bij" = ( +"bil" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -35115,7 +35155,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bik" = ( +"bim" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -35128,7 +35168,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bil" = ( +"bin" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -35150,7 +35190,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bim" = ( +"bio" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -35169,7 +35209,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bin" = ( +"bip" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -35187,7 +35227,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bio" = ( +"biq" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/alarm{ dir = 4; @@ -35200,12 +35240,12 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bip" = ( +"bir" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/medical/reception) -"biq" = ( +"bis" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -35226,7 +35266,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bir" = ( +"bit" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -35242,7 +35282,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bis" = ( +"biu" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -35261,7 +35301,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"bit" = ( +"biv" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -35276,7 +35316,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"biu" = ( +"biw" = ( /obj/machinery/door/airlock/multi_tile/glass{ autoclose = 1; dir = 2; @@ -35300,7 +35340,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biv" = ( +"bix" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35324,7 +35364,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biw" = ( +"biy" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35342,7 +35382,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bix" = ( +"biz" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35355,7 +35395,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biy" = ( +"biA" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35370,7 +35410,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/reception) -"biz" = ( +"biB" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35385,7 +35425,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biA" = ( +"biC" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35396,7 +35436,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biB" = ( +"biD" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35410,7 +35450,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"biC" = ( +"biE" = ( /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; dir = 10 @@ -35421,7 +35461,7 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled, /area/medical/reception) -"biD" = ( +"biF" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -35449,7 +35489,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/chemistry) -"biE" = ( +"biG" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -35457,11 +35497,11 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biF" = ( +"biH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biG" = ( +"biI" = ( /obj/machinery/smartfridge/secure/medbay{ density = 0; name = "Dangerous Materials Storage"; @@ -35473,7 +35513,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biH" = ( +"biJ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringes{ pixel_x = 5; @@ -35492,7 +35532,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biI" = ( +"biK" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -35500,7 +35540,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biJ" = ( +"biL" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper, /obj/effect/floor_decal/corner/mauve{ @@ -35519,7 +35559,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"biK" = ( +"biM" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -35530,21 +35570,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"biL" = ( +"biN" = ( /turf/simulated/wall, /area/maintenance/medbay) -"biM" = ( +"biO" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biN" = ( +"biP" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biO" = ( +"biQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -35563,7 +35603,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biP" = ( +"biR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -35572,7 +35612,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biQ" = ( +"biS" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -35582,7 +35622,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge) -"biR" = ( +"biT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -35600,7 +35640,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"biS" = ( +"biU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -35621,19 +35661,19 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"biT" = ( +"biV" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge) -"biU" = ( +"biW" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biV" = ( +"biX" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/alarm{ pixel_y = 23 @@ -35641,15 +35681,15 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biW" = ( +"biY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"biX" = ( +"biZ" = ( /turf/simulated/wall/r_wall, /area/bridge/aibunker) -"biY" = ( +"bja" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -35661,7 +35701,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"biZ" = ( +"bjb" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -35673,20 +35713,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bja" = ( +"bjc" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bjb" = ( +"bjd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bjc" = ( +"bje" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -35699,7 +35739,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bjd" = ( +"bjf" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(29) }, @@ -35715,7 +35755,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bje" = ( +"bjg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -35732,7 +35772,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjf" = ( +"bjh" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -35743,14 +35783,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjg" = ( +"bji" = ( /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjh" = ( +"bjj" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bji" = ( +"bjk" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -35758,20 +35798,20 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjj" = ( +"bjl" = ( /obj/effect/floor_decal/corner/orange{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bjk" = ( +"bjm" = ( /obj/effect/floor_decal/corner/orange{ dir = 10 }, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bjl" = ( +"bjn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -35788,7 +35828,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjm" = ( +"bjo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -35796,7 +35836,7 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bjn" = ( +"bjp" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -35806,7 +35846,7 @@ /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bjo" = ( +"bjq" = ( /obj/structure/table/reinforced, /obj/machinery/door/window{ base_state = "right"; @@ -35823,7 +35863,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bjp" = ( +"bjr" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -35835,17 +35875,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bjq" = ( +"bjs" = ( /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"bjr" = ( +"bjt" = ( /obj/machinery/newscaster{ pixel_x = -32; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bjs" = ( +"bju" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -35862,13 +35902,13 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bjt" = ( +"bjv" = ( /obj/structure/table/standard, /obj/item/weapon/surgicaldrill, /obj/item/weapon/FixOVein, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bju" = ( +"bjw" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -35876,7 +35916,7 @@ /obj/machinery/computer/operating, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjv" = ( +"bjx" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -35885,7 +35925,7 @@ /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjw" = ( +"bjy" = ( /obj/structure/curtain/open/medical, /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; @@ -35896,7 +35936,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjx" = ( +"bjz" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -35914,7 +35954,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bjy" = ( +"bjA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Combined Operating Theatre"; @@ -35925,7 +35965,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bjz" = ( +"bjB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -35943,7 +35983,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) -"bjA" = ( +"bjC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "Main Storage"; @@ -35951,10 +35991,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bjB" = ( +"bjD" = ( /turf/simulated/wall, /area/medical/main_storage) -"bjC" = ( +"bjE" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -35966,7 +36006,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bjD" = ( +"bjF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -35985,7 +36025,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bjE" = ( +"bjG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "Reception Desk"; @@ -35994,7 +36034,7 @@ /obj/effect/floor_decal/corner/white/diagonal, /turf/simulated/floor/tiled, /area/medical/reception) -"bjF" = ( +"bjH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -36008,7 +36048,7 @@ /obj/structure/sign/nosmoking_2, /turf/simulated/floor/plating, /area/medical/reception) -"bjG" = ( +"bjI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -36023,7 +36063,7 @@ /obj/structure/sign/patients_only, /turf/simulated/floor/plating, /area/medical/reception) -"bjH" = ( +"bjJ" = ( /obj/machinery/door/airlock/multi_tile/glass{ id_tag = "main_door"; name = "Triage Room Main Entrance"; @@ -36048,7 +36088,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/reception) -"bjI" = ( +"bjK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -36060,7 +36100,7 @@ }, /turf/simulated/floor/tiled, /area/medical/reception) -"bjJ" = ( +"bjL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -36086,10 +36126,10 @@ }, /turf/simulated/floor/plating, /area/medical/reception) -"bjK" = ( +"bjM" = ( /turf/simulated/wall, /area/medical/exam_room) -"bjL" = ( +"bjN" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/airlock/medical{ @@ -36099,7 +36139,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bjM" = ( +"bjO" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -36115,7 +36155,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bjN" = ( +"bjP" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -36132,10 +36172,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/exam_room) -"bjO" = ( +"bjQ" = ( /turf/simulated/wall, /area/medical/psych) -"bjP" = ( +"bjR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Mental Heath"; @@ -36143,7 +36183,7 @@ }, /turf/simulated/floor/wood, /area/medical/psych) -"bjQ" = ( +"bjS" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -36159,7 +36199,7 @@ }, /turf/simulated/floor/plating, /area/medical/psych) -"bjR" = ( +"bjT" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -36175,7 +36215,7 @@ }, /turf/simulated/floor/plating, /area/medical/psych) -"bjS" = ( +"bjU" = ( /obj/structure/table/standard, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, @@ -36191,25 +36231,25 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjT" = ( +"bjV" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjU" = ( +"bjW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjV" = ( +"bjX" = ( /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjW" = ( +"bjY" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjX" = ( +"bjZ" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/clothing/glasses/science, @@ -36227,7 +36267,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bjY" = ( +"bka" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -36255,7 +36295,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bjZ" = ( +"bkb" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -36288,7 +36328,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bka" = ( +"bkc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -36315,13 +36355,13 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bkb" = ( +"bkd" = ( /turf/simulated/wall, /area/bridge/minibar) -"bkc" = ( +"bke" = ( /turf/simulated/wall/r_wall, /area/bridge/minibar) -"bkd" = ( +"bkf" = ( /obj/structure/table/rack, /obj/item/stack/material/glass{ amount = 20; @@ -36339,7 +36379,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bke" = ( +"bkg" = ( /obj/structure/table/rack, /obj/item/stack/material/wood{ amount = 20 @@ -36354,7 +36394,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bkf" = ( +"bkh" = ( /obj/structure/table/rack, /obj/item/weapon/paper_bin{ pixel_x = 6; @@ -36367,7 +36407,7 @@ }, /turf/simulated/floor/tiled/dark, /area/janitor) -"bkg" = ( +"bki" = ( /obj/structure/table/rack, /obj/item/weapon/caution{ pixel_x = 4; @@ -36385,7 +36425,7 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/dark, /area/janitor) -"bkh" = ( +"bkj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -36403,7 +36443,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bki" = ( +"bkk" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -36421,7 +36461,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bkj" = ( +"bkl" = ( /obj/item/device/radio/intercom{ pixel_x = -27 }, @@ -36434,7 +36474,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkk" = ( +"bkm" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 2; sortType = "Robotics"; @@ -36443,14 +36483,14 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkl" = ( +"bkn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkm" = ( +"bko" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -36458,17 +36498,17 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkn" = ( +"bkp" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bko" = ( +"bkq" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkp" = ( +"bkr" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -36483,10 +36523,10 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bkq" = ( +"bks" = ( /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"bkr" = ( +"bkt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/industrial/warning{ @@ -36499,11 +36539,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bks" = ( +"bku" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bkt" = ( +"bkv" = ( /obj/structure/sign/nosmoking_1{ pixel_x = 32 }, @@ -36513,7 +36553,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bku" = ( +"bkw" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 }, @@ -36523,13 +36563,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bkv" = ( +"bkx" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"bkw" = ( +"bky" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -36545,7 +36585,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bkx" = ( +"bkz" = ( /obj/structure/table/standard, /obj/item/weapon/bonesetter, /obj/item/weapon/bonegel, @@ -36555,7 +36595,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bky" = ( +"bkA" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -36574,7 +36614,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkz" = ( +"bkB" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36584,7 +36624,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkA" = ( +"bkC" = ( /obj/structure/sink/kitchen{ name = "surgical sink"; pixel_y = 28 @@ -36595,7 +36635,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkB" = ( +"bkD" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36606,7 +36646,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkC" = ( +"bkE" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36619,7 +36659,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bkD" = ( +"bkF" = ( /obj/structure/closet/crate/freezer{ name = "O- Blood Packs" }, @@ -36632,7 +36672,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bkE" = ( +"bkG" = ( /obj/structure/closet/crate/freezer{ name = "Various Blood Packs" }, @@ -36651,7 +36691,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bkF" = ( +"bkH" = ( /obj/structure/closet/crate/freezer{ name = "Fridge" }, @@ -36664,7 +36704,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bkG" = ( +"bkI" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -36678,14 +36718,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bkH" = ( +"bkJ" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bkI" = ( +"bkK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -36702,7 +36742,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) -"bkJ" = ( +"bkL" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -36713,7 +36753,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bkK" = ( +"bkM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -36725,7 +36765,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bkL" = ( +"bkN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ id_tag = "sur_door"; @@ -36739,7 +36779,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bkM" = ( +"bkO" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -36751,7 +36791,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkN" = ( +"bkP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -36759,7 +36799,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkO" = ( +"bkQ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 4 @@ -36778,7 +36818,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkP" = ( +"bkR" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -36803,7 +36843,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkQ" = ( +"bkS" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -36813,7 +36853,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkR" = ( +"bkT" = ( /obj/machinery/button/remote/airlock{ id = "main_door"; name = "Main Exit Door Control"; @@ -36830,10 +36870,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkS" = ( +"bkU" = ( /turf/simulated/floor/tiled/white, /area/medical/triage) -"bkT" = ( +"bkV" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/airlock/medical{ @@ -36843,22 +36883,22 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkU" = ( +"bkW" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkV" = ( +"bkX" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkW" = ( +"bkY" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkX" = ( +"bkZ" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/corner/grey/diagonal, @@ -36866,11 +36906,11 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bkY" = ( +"bla" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, /area/medical/psych) -"bkZ" = ( +"blb" = ( /obj/structure/closet/secure_closet{ name = "Psychiatrist's Locker"; req_access = list(64) @@ -36884,7 +36924,7 @@ /obj/item/weapon/reagent_containers/syringe, /turf/simulated/floor/carpet, /area/medical/psych) -"bla" = ( +"blc" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -1; @@ -36892,7 +36932,7 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) -"blb" = ( +"bld" = ( /obj/structure/table/standard, /obj/item/stack/material/phoron, /obj/item/stack/material/phoron, @@ -36920,12 +36960,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"blc" = ( +"ble" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bld" = ( +"blf" = ( /obj/structure/closet/secure_closet/chemical, /obj/item/device/radio/headset/headset_med, /obj/item/device/radio/headset/headset_med, @@ -36937,7 +36977,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"ble" = ( +"blg" = ( /obj/machinery/chemical_dispenser/full, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -36945,7 +36985,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"blf" = ( +"blh" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -36968,26 +37008,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"blg" = ( -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"blh" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bli" = ( -/obj/structure/closet, +/obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) "blj" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"blk" = ( +/obj/structure/closet, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bll" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"blk" = ( +"blm" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37005,7 +37045,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bll" = ( +"bln" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Corridor Camera 1" }, @@ -37019,7 +37059,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"blm" = ( +"blo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -37032,7 +37072,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bln" = ( +"blp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37042,7 +37082,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"blo" = ( +"blq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37063,7 +37103,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"blp" = ( +"blr" = ( /obj/machinery/light_switch{ pixel_y = 24 }, @@ -37074,7 +37114,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blq" = ( +"bls" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -37091,7 +37131,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blr" = ( +"blt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37102,7 +37142,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bls" = ( +"blu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37113,7 +37153,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blt" = ( +"blv" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -37121,7 +37161,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"blu" = ( +"blw" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37139,10 +37179,10 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"blv" = ( +"blx" = ( /turf/simulated/open, /area/bridge/aibunker) -"blw" = ( +"bly" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -37152,15 +37192,15 @@ }, /turf/simulated/floor/plating, /area/bridge/aibunker) -"blx" = ( +"blz" = ( /obj/structure/ladder/up, /turf/simulated/floor/plating, /area/bridge/aibunker) -"bly" = ( +"blA" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/research_port) -"blz" = ( +"blB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -37172,13 +37212,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"blA" = ( +"blC" = ( /turf/simulated/wall, /area/maintenance/substation/research) -"blB" = ( +"blD" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/research) -"blC" = ( +"blE" = ( /obj/structure/table/standard, /obj/item/stack/material/steel{ amount = 50 @@ -37210,14 +37250,14 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blD" = ( +"blF" = ( /obj/structure/table/standard, /obj/item/stack/material/plasteel{ amount = 20 }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blE" = ( +"blG" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/ripley_build_and_repair, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -37227,11 +37267,11 @@ /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blF" = ( +"blH" = ( /obj/machinery/computer/rdconsole/robotics, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"blG" = ( +"blI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -37246,7 +37286,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"blH" = ( +"blJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -37256,7 +37296,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blI" = ( +"blK" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -37266,14 +37306,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blJ" = ( +"blL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blK" = ( +"blM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37284,7 +37324,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blL" = ( +"blN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37294,18 +37334,18 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blM" = ( +"blO" = ( /obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blN" = ( +"blP" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blO" = ( +"blQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37315,7 +37355,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blP" = ( +"blR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37324,7 +37364,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blQ" = ( +"blS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -37341,13 +37381,13 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blR" = ( +"blT" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blS" = ( +"blU" = ( /obj/machinery/door/blast/shutters{ density = 1; dir = 4; @@ -37360,18 +37400,18 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"blT" = ( +"blV" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"blU" = ( +"blW" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"blV" = ( +"blX" = ( /obj/structure/disposaloutlet{ icon_state = "outlet"; dir = 4 @@ -37381,7 +37421,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"blW" = ( +"blY" = ( /obj/structure/table/standard, /obj/machinery/door/window{ base_state = "left"; @@ -37395,7 +37435,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"blX" = ( +"blZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37407,7 +37447,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"blY" = ( +"bma" = ( /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37420,7 +37460,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"blZ" = ( +"bmb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37432,7 +37472,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bma" = ( +"bmc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37446,7 +37486,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bmb" = ( +"bmd" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -37461,7 +37501,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bmc" = ( +"bme" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37470,7 +37510,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bmd" = ( +"bmf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37482,7 +37522,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bme" = ( +"bmg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37500,13 +37540,13 @@ temperature = 278 }, /area/medical/surgerywing) -"bmf" = ( +"bmh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/surgerywing) -"bmg" = ( +"bmi" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -37526,14 +37566,14 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bmh" = ( +"bmj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bmi" = ( +"bmk" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -37550,7 +37590,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bmj" = ( +"bml" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37561,7 +37601,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bmk" = ( +"bmm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37571,7 +37611,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgeryprep) -"bml" = ( +"bmn" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -37592,7 +37632,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgeryprep) -"bmm" = ( +"bmo" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -37615,7 +37655,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmn" = ( +"bmp" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/bed/chair{ dir = 1 @@ -37625,7 +37665,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmo" = ( +"bmq" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/bed/chair{ dir = 1 @@ -37636,7 +37676,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmp" = ( +"bmr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37654,7 +37694,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmq" = ( +"bms" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37665,7 +37705,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bmr" = ( +"bmt" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -37685,7 +37725,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bms" = ( +"bmu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -37705,13 +37745,13 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bmt" = ( +"bmv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/exam_room) -"bmu" = ( +"bmw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37725,7 +37765,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmv" = ( +"bmx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37736,7 +37776,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmw" = ( +"bmy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37749,7 +37789,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmx" = ( +"bmz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37768,13 +37808,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bmy" = ( +"bmA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/psych) -"bmz" = ( +"bmB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37790,7 +37830,7 @@ }, /turf/simulated/floor/wood, /area/medical/psych) -"bmA" = ( +"bmC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37815,7 +37855,7 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) -"bmB" = ( +"bmD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -37827,14 +37867,14 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) -"bmC" = ( +"bmE" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bmD" = ( +"bmF" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, /obj/effect/floor_decal/corner/mauve{ @@ -37849,7 +37889,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmE" = ( +"bmG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 1; @@ -37857,14 +37897,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmF" = ( +"bmH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmG" = ( +"bmI" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -37875,7 +37915,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmH" = ( +"bmJ" = ( /obj/machinery/chemical_dispenser/full, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -37883,7 +37923,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmI" = ( +"bmK" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -37903,7 +37943,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bmJ" = ( +"bmL" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -37917,7 +37957,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmK" = ( +"bmM" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -37931,7 +37971,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmL" = ( +"bmN" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -37945,7 +37985,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmM" = ( +"bmO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37959,7 +37999,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bmN" = ( +"bmP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -37979,7 +38019,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bmO" = ( +"bmQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -37989,7 +38029,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bmP" = ( +"bmR" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38010,12 +38050,12 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bmQ" = ( +"bmS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bmR" = ( +"bmT" = ( /obj/item/weapon/stool/padded, /obj/structure/cable/green{ d1 = 1; @@ -38024,21 +38064,21 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bmS" = ( +"bmU" = ( /obj/structure/table/wood, /obj/machinery/chemical_dispenser/coffee/full, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bmT" = ( +"bmV" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bmU" = ( +"bmW" = ( /obj/machinery/vending/dinnerware, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bmV" = ( +"bmX" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38058,7 +38098,7 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"bmW" = ( +"bmY" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -38070,7 +38110,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bmX" = ( +"bmZ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38082,7 +38122,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bmY" = ( +"bna" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38093,7 +38133,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bmZ" = ( +"bnb" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38107,7 +38147,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bna" = ( +"bnc" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -38119,7 +38159,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bnb" = ( +"bnd" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -38144,7 +38184,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bnc" = ( +"bne" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -38160,7 +38200,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bnd" = ( +"bnf" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -38179,7 +38219,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bne" = ( +"bng" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38192,7 +38232,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bnf" = ( +"bnh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38200,7 +38240,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bng" = ( +"bni" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38213,7 +38253,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bnh" = ( +"bnj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -38224,7 +38264,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bni" = ( +"bnk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -38235,7 +38275,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnj" = ( +"bnl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -38249,7 +38289,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnk" = ( +"bnm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38263,7 +38303,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnl" = ( +"bnn" = ( /obj/machinery/door/window{ dir = 4; name = "Components Manufacture"; @@ -38283,7 +38323,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bnm" = ( +"bno" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -38298,7 +38338,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnn" = ( +"bnp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38315,7 +38355,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bno" = ( +"bnq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38330,7 +38370,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnp" = ( +"bnr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -38345,7 +38385,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnq" = ( +"bns" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38360,7 +38400,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnr" = ( +"bnt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38378,7 +38418,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bns" = ( +"bnu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -38393,7 +38433,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnt" = ( +"bnv" = ( /obj/machinery/door/airlock/multi_tile/glass{ autoclose = 1; dir = 2; @@ -38409,14 +38449,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnu" = ( +"bnw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnv" = ( +"bnx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -38425,7 +38465,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnw" = ( +"bny" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -38434,7 +38474,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bnx" = ( +"bnz" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/blast/shutters{ @@ -38447,7 +38487,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bny" = ( +"bnA" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -38458,11 +38498,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bnz" = ( +"bnB" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"bnA" = ( +"bnC" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -38472,7 +38512,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bnB" = ( +"bnD" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -38489,7 +38529,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bnC" = ( +"bnE" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -38499,7 +38539,7 @@ /obj/item/weapon/bonegel, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnD" = ( +"bnF" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -38518,7 +38558,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnE" = ( +"bnG" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -38532,7 +38572,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnF" = ( +"bnH" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -38548,7 +38588,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnG" = ( +"bnI" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -38559,7 +38599,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnH" = ( +"bnJ" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -38576,21 +38616,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bnI" = ( +"bnK" = ( /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/tiled/freezer{ name = "cold storage tiles"; temperature = 278 }, /area/medical/surgerywing) -"bnJ" = ( +"bnL" = ( /obj/machinery/floodlight, /turf/simulated/floor/tiled/freezer{ name = "cold storage tiles"; temperature = 278 }, /area/medical/surgerywing) -"bnK" = ( +"bnM" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/bloodpacks, /turf/simulated/floor/tiled/freezer{ @@ -38598,7 +38638,7 @@ temperature = 278 }, /area/medical/surgerywing) -"bnL" = ( +"bnN" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular{ pixel_x = 5; @@ -38617,7 +38657,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bnM" = ( +"bnO" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -38630,7 +38670,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bnN" = ( +"bnP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -38648,7 +38688,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bnO" = ( +"bnQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -38665,13 +38705,13 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bnP" = ( +"bnR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/main_storage) -"bnQ" = ( +"bnS" = ( /obj/machinery/bodyscanner{ icon_state = "body_scanner_0"; dir = 4 @@ -38688,7 +38728,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bnR" = ( +"bnT" = ( /obj/machinery/body_scanconsole{ icon_state = "body_scannerconsole"; dir = 8 @@ -38706,7 +38746,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/triage) -"bnS" = ( +"bnU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38719,13 +38759,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bnT" = ( +"bnV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bnU" = ( +"bnW" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -38736,14 +38776,14 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bnV" = ( +"bnX" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/medical/triage) -"bnW" = ( +"bnY" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -38763,7 +38803,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bnX" = ( +"bnZ" = ( /obj/item/device/radio{ anchored = 1; broadcasting = 0; @@ -38787,7 +38827,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bnY" = ( +"boa" = ( /obj/item/weapon/folder/white, /obj/item/weapon/pen, /obj/structure/disposalpipe/segment{ @@ -38796,7 +38836,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bnZ" = ( +"bob" = ( /obj/item/weapon/paper_bin{ pixel_x = -1; pixel_y = 7 @@ -38807,7 +38847,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"boa" = ( +"boc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38826,7 +38866,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bob" = ( +"bod" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -38843,13 +38883,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/medical/psych) -"boc" = ( +"boe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet, /area/medical/psych) -"bod" = ( +"bof" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -38861,11 +38901,11 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) -"boe" = ( +"bog" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/medical/chemistry) -"bof" = ( +"boh" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -38883,30 +38923,30 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bog" = ( +"boi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"boh" = ( +"boj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"boi" = ( +"bok" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"boj" = ( +"bol" = ( /turf/simulated/wall, /area/medical/medbay2) -"bok" = ( +"bom" = ( /turf/simulated/floor/plating, /area/maintenance/medbay) -"bol" = ( +"bon" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38917,7 +38957,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bom" = ( +"boo" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -38942,7 +38982,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bon" = ( +"bop" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -38959,7 +38999,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"boo" = ( +"boq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -38983,7 +39023,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bop" = ( +"bor" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -39001,7 +39041,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"boq" = ( +"bos" = ( /obj/machinery/door/airlock/glass_command{ name = "Break Room"; req_access = list(19) @@ -39030,7 +39070,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bor" = ( +"bot" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -39045,7 +39085,7 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bos" = ( +"bou" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -39062,7 +39102,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bot" = ( +"bov" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/glass/rag, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -39075,7 +39115,7 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bou" = ( +"bow" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ @@ -39085,7 +39125,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bov" = ( +"box" = ( /obj/machinery/chemical_dispenser/bar_alc/full, /obj/structure/table/wood, /obj/machinery/light{ @@ -39101,7 +39141,7 @@ }, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bow" = ( +"boy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39126,7 +39166,7 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"box" = ( +"boz" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -39150,7 +39190,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"boy" = ( +"boA" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Research" @@ -39162,7 +39202,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"boz" = ( +"boB" = ( /obj/machinery/mecha_part_fabricator, /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Fabrication"; @@ -39172,17 +39212,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boA" = ( +"boC" = ( /obj/machinery/mecha_part_fabricator, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boB" = ( +"boD" = ( /obj/item/toy/figure/roboticist, /obj/machinery/r_n_d/circuit_imprinter, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boC" = ( +"boE" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; desc = "A conveyor control switch. It appears to only go in one direction. Controls the components conveyor belt."; @@ -39191,7 +39231,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"boD" = ( +"boF" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -39199,7 +39239,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boE" = ( +"boG" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, @@ -39208,28 +39248,28 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boF" = ( +"boH" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boG" = ( +"boI" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boH" = ( +"boJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boI" = ( +"boK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -39240,7 +39280,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boJ" = ( +"boL" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Robotics Charging Bay"; dir = 4; @@ -39254,21 +39294,21 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boK" = ( +"boM" = ( /obj/effect/landmark{ name = "JoinLateCyborg" }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boL" = ( +"boN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boM" = ( +"boO" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boN" = ( +"boP" = ( /obj/machinery/button/remote/blast_door{ desc = "It controls the Mech Bay's shutters."; id = "MechBayShutter"; @@ -39277,14 +39317,14 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"boO" = ( +"boQ" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"boP" = ( +"boR" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -39295,11 +39335,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"boQ" = ( +"boS" = ( /obj/turbolift_map_holder/aurora/civilian_aux, /turf/simulated/floor/plating, /area/turbolift/main_station_aux) -"boR" = ( +"boT" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -39315,7 +39355,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"boS" = ( +"boU" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -39323,7 +39363,7 @@ /obj/machinery/computer/operating, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boT" = ( +"boV" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 5 @@ -39332,7 +39372,7 @@ /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boU" = ( +"boW" = ( /obj/structure/curtain/open/medical, /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; @@ -39343,7 +39383,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boV" = ( +"boX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -39361,7 +39401,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"boW" = ( +"boY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Combined Operating Theatre"; @@ -39377,7 +39417,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"boX" = ( +"boZ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire{ pixel_x = 4; @@ -39397,7 +39437,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"boY" = ( +"bpa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -39406,7 +39446,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"boZ" = ( +"bpb" = ( /obj/structure/disposaloutlet{ icon_state = "outlet"; dir = 4 @@ -39421,7 +39461,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bpa" = ( +"bpc" = ( /obj/structure/table/standard, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -39440,7 +39480,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpb" = ( +"bpd" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/masks{ pixel_x = 4; @@ -39452,7 +39492,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpc" = ( +"bpe" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -39474,7 +39514,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bpd" = ( +"bpf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -39494,7 +39534,7 @@ }, /turf/simulated/floor/plating, /area/medical/main_storage) -"bpe" = ( +"bpg" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -39512,7 +39552,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bpf" = ( +"bph" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -39527,7 +39567,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bpg" = ( +"bpi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -39536,7 +39576,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bph" = ( +"bpj" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -39548,7 +39588,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/medical/triage) -"bpi" = ( +"bpk" = ( /obj/effect/floor_decal/industrial/outline/red, /obj/structure/disposalpipe/segment{ dir = 4 @@ -39558,7 +39598,7 @@ }, /turf/simulated/floor/tiled, /area/medical/triage) -"bpj" = ( +"bpl" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ @@ -39577,7 +39617,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bpk" = ( +"bpm" = ( /obj/machinery/computer/med_data/laptop, /obj/structure/disposalpipe/segment{ dir = 4 @@ -39585,7 +39625,7 @@ /obj/structure/table/standard, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bpl" = ( +"bpn" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, @@ -39619,13 +39659,13 @@ }, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bpm" = ( +"bpo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet/blue, /area/medical/exam_room) -"bpn" = ( +"bpp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -39644,7 +39684,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bpo" = ( +"bpq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -39658,7 +39698,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/medical/psych) -"bpp" = ( +"bpr" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -39670,7 +39710,7 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) -"bpq" = ( +"bps" = ( /obj/structure/disposalpipe/segment, /obj/structure/bed/psych, /obj/item/weapon/bedsheet/brown, @@ -39681,7 +39721,7 @@ }, /turf/simulated/floor/carpet, /area/medical/psych) -"bpr" = ( +"bpt" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -39705,21 +39745,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bps" = ( +"bpu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpt" = ( +"bpv" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpu" = ( +"bpw" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -39747,7 +39787,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpv" = ( +"bpx" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -39755,7 +39795,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpw" = ( +"bpy" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/dropper, /obj/effect/floor_decal/corner/mauve{ @@ -39771,14 +39811,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bpx" = ( +"bpz" = ( /obj/machinery/disposal{ name = "MediExpress - Reception" }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bpy" = ( +"bpA" = ( /obj/machinery/disposal{ name = "MediExpress - Surgery" }, @@ -39789,14 +39829,14 @@ }, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bpz" = ( +"bpB" = ( /obj/machinery/disposal{ name = "MediExpress - Storage" }, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bpA" = ( +"bpC" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39813,7 +39853,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"bpB" = ( +"bpD" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39833,23 +39873,23 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"bpC" = ( +"bpE" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bpD" = ( +"bpF" = ( /obj/structure/table/wood, /obj/item/weapon/material/ashtray/bronze, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bpE" = ( +"bpG" = ( /obj/machinery/vending/boozeomat{ req_access = list(19) }, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bpF" = ( +"bpH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -39866,12 +39906,12 @@ }, /turf/simulated/floor/plating, /area/bridge/minibar) -"bpG" = ( +"bpI" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bpH" = ( +"bpJ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -39887,7 +39927,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bpI" = ( +"bpK" = ( /obj/machinery/door/airlock/engineering{ name = "Science Substation"; req_one_access = list(11,24,7) @@ -39901,7 +39941,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bpJ" = ( +"bpL" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -39915,20 +39955,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bpK" = ( +"bpM" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Research Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/research) -"bpL" = ( +"bpN" = ( /obj/machinery/conveyor{ dir = 8; id = "Robocompo" }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bpM" = ( +"bpO" = ( /obj/machinery/conveyor{ dir = 8; id = "Robocompo" @@ -39939,7 +39979,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bpN" = ( +"bpP" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 8; @@ -39948,21 +39988,21 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpO" = ( +"bpQ" = ( /obj/machinery/conveyor{ dir = 8; id = "Robocompo" }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpP" = ( +"bpR" = ( /obj/effect/floor_decal/industrial/loading{ icon_state = "loadingarea"; dir = 4 }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpQ" = ( +"bpS" = ( /obj/structure/table/standard, /obj/item/weapon/cell/high, /obj/item/weapon/cell/high, @@ -39977,7 +40017,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpR" = ( +"bpT" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/item/weapon/reagent_containers/glass/bucket, @@ -39989,7 +40029,7 @@ /obj/item/device/flash/synthetic, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpS" = ( +"bpU" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/regular{ empty = 1; @@ -40004,12 +40044,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpT" = ( +"bpV" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpU" = ( +"bpW" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/computer/cryopod/robot{ @@ -40017,7 +40057,7 @@ }, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpV" = ( +"bpX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -40025,17 +40065,17 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/assembly/robotics) -"bpW" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"bpX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled, -/area/assembly/robotics) "bpY" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"bpZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/assembly/robotics) +"bqa" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 5"; dir = 1 @@ -40047,7 +40087,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bpZ" = ( +"bqb" = ( /obj/structure/sign/directions/civ{ pixel_x = 32; pixel_y = -8 @@ -40070,7 +40110,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bqa" = ( +"bqc" = ( /obj/structure/sign/directions/civ{ pixel_x = -32; pixel_y = -8 @@ -40093,14 +40133,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bqb" = ( +"bqd" = ( /obj/effect/floor_decal/industrial/outline/blue, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bqc" = ( +"bqe" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, @@ -40109,21 +40149,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bqd" = ( +"bqf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bqe" = ( +"bqg" = ( /obj/structure/table/standard, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqf" = ( +"bqh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -40134,7 +40174,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqg" = ( +"bqi" = ( /obj/item/roller, /obj/item/roller{ pixel_y = 4 @@ -40153,7 +40193,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqh" = ( +"bqj" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -40170,7 +40210,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/em_preop) -"bqi" = ( +"bqk" = ( /obj/machinery/button/remote/airlock{ id = "reanimation_door"; name = "Door Control"; @@ -40184,7 +40224,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqj" = ( +"bql" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/corner/pink{ @@ -40193,10 +40233,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bqk" = ( +"bqm" = ( /turf/simulated/wall, /area/medical/em_preop) -"bql" = ( +"bqn" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 4; @@ -40214,7 +40254,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqm" = ( +"bqo" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -40223,7 +40263,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqn" = ( +"bqp" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -40232,10 +40272,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqo" = ( +"bqq" = ( /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqp" = ( +"bqr" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers{ pixel_x = 4; @@ -40247,7 +40287,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bqq" = ( +"bqs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -40261,11 +40301,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) -"bqr" = ( +"bqt" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/medical/triage) -"bqs" = ( +"bqu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -40276,7 +40316,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/triage) -"bqt" = ( +"bqv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -40284,7 +40324,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bqu" = ( +"bqw" = ( /obj/effect/floor_decal/corner/beige, /obj/machinery/firealarm/east, /obj/structure/sink{ @@ -40299,10 +40339,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bqv" = ( +"bqx" = ( /turf/simulated/wall, /area/medical/triage) -"bqw" = ( +"bqy" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 8; @@ -40321,7 +40361,7 @@ }, /turf/simulated/floor/plating, /area/medical/exam_room) -"bqx" = ( +"bqz" = ( /obj/machinery/door/airlock/medical{ id_tag = null; name = "Examination Room"; @@ -40338,7 +40378,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/exam_room) -"bqy" = ( +"bqA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Mental Heath"; @@ -40353,7 +40393,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/medical/psych) -"bqz" = ( +"bqB" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -40370,7 +40410,7 @@ }, /turf/simulated/floor/plating, /area/medical/psych) -"bqA" = ( +"bqC" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -40387,7 +40427,7 @@ }, /turf/simulated/floor/plating, /area/medical/psych) -"bqB" = ( +"bqD" = ( /obj/machinery/door/airlock/glass_medical{ name = "Chemistry Laboratory"; req_access = list(33) @@ -40402,7 +40442,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bqC" = ( +"bqE" = ( /obj/machinery/smartfridge/secure/medbay{ density = 1; pixel_y = 0 @@ -40410,7 +40450,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/chemistry) -"bqD" = ( +"bqF" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ @@ -40430,7 +40470,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) -"bqE" = ( +"bqG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -40440,16 +40480,16 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bqF" = ( +"bqH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bqG" = ( +"bqI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/medical/medbay2) -"bqH" = ( +"bqJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -40461,7 +40501,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bqI" = ( +"bqK" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -40474,14 +40514,14 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge) -"bqJ" = ( +"bqL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/bridge) -"bqK" = ( +"bqM" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -40489,11 +40529,11 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bqL" = ( +"bqN" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bqM" = ( +"bqO" = ( /obj/structure/table/wood, /obj/machinery/chemical_dispenser/bar_soft/full, /obj/machinery/camera/network/command{ @@ -40503,12 +40543,12 @@ }, /turf/simulated/floor/carpet, /area/bridge/minibar) -"bqN" = ( +"bqP" = ( /obj/machinery/smartfridge/drinks, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/bridge/minibar) -"bqO" = ( +"bqQ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40521,7 +40561,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/bridge/minibar) -"bqP" = ( +"bqR" = ( /obj/structure/closet, /obj/random/loot, /obj/machinery/light/small/emergency{ @@ -40529,14 +40569,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bqQ" = ( +"bqS" = ( /turf/simulated/wall/r_wall, /area/server) -"bqR" = ( +"bqT" = ( /obj/structure/sign/poster, /turf/simulated/wall, /area/assembly/robotics) -"bqS" = ( +"bqU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40556,7 +40596,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqT" = ( +"bqV" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40574,7 +40614,7 @@ /obj/structure/sign/flag/nanotrasen/left, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqU" = ( +"bqW" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40592,7 +40632,7 @@ /obj/structure/sign/flag/nanotrasen/right, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqV" = ( +"bqX" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -40612,7 +40652,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"bqW" = ( +"bqY" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40636,7 +40676,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"bqX" = ( +"bqZ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -40644,7 +40684,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bqY" = ( +"bra" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -40654,13 +40694,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bqZ" = ( +"brb" = ( /obj/item/device/radio/intercom{ pixel_y = 27 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bra" = ( +"brc" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -40670,18 +40710,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"brb" = ( +"brd" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"brc" = ( +"bre" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"brd" = ( +"brf" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -40698,19 +40738,19 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bre" = ( +"brg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"brf" = ( +"brh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"brg" = ( +"bri" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -40719,7 +40759,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"brh" = ( +"brj" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 4; @@ -40733,26 +40773,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bri" = ( +"brk" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"brj" = ( +"brl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ - name = "Reanimation Ward"; + name = "Recovery Ward"; req_access = list(66) }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"brk" = ( +"brm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"brl" = ( +"brn" = ( /obj/structure/curtain/medical, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -40760,7 +40800,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"brm" = ( +"bro" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/toxin{ pixel_x = 4; @@ -40777,14 +40817,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brn" = ( +"brp" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bro" = ( +"brq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -40797,11 +40837,11 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brp" = ( +"brr" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brq" = ( +"brs" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ dir = 6 @@ -40824,7 +40864,7 @@ /obj/item/weapon/storage/box/rxglasses, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"brr" = ( +"brt" = ( /obj/machinery/bodyscanner{ icon_state = "body_scanner_0"; dir = 4 @@ -40833,7 +40873,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/medical/triage) -"brs" = ( +"bru" = ( /obj/machinery/body_scanconsole{ icon_state = "body_scannerconsole"; dir = 8 @@ -40847,7 +40887,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/triage) -"brt" = ( +"brv" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -40855,7 +40895,7 @@ /obj/effect/floor_decal/sign/gtr, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bru" = ( +"brw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ @@ -40868,7 +40908,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"brv" = ( +"brx" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1449; @@ -40878,7 +40918,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"brw" = ( +"bry" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; @@ -40886,7 +40926,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"brx" = ( +"brz" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; @@ -40894,10 +40934,10 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bry" = ( +"brA" = ( /turf/simulated/wall, /area/medical/gen_treatment) -"brz" = ( +"brB" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -40910,7 +40950,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brA" = ( +"brC" = ( /obj/effect/floor_decal/sign/ex, /obj/structure/cable/green{ d1 = 1; @@ -40922,7 +40962,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brB" = ( +"brD" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -40935,7 +40975,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brC" = ( +"brE" = ( /obj/effect/floor_decal/sign/p, /obj/structure/cable/green{ d1 = 1; @@ -40946,11 +40986,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brD" = ( +"brF" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brE" = ( +"brG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -40960,7 +41000,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brF" = ( +"brH" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -40976,7 +41016,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brG" = ( +"brI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -40989,7 +41029,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brH" = ( +"brJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41001,7 +41041,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brI" = ( +"brK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41018,7 +41058,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brJ" = ( +"brL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41033,7 +41073,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brK" = ( +"brM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41045,7 +41085,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brL" = ( +"brN" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -41065,7 +41105,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brM" = ( +"brO" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -41081,7 +41121,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brN" = ( +"brP" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -41098,7 +41138,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brO" = ( +"brQ" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, @@ -41109,7 +41149,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brP" = ( +"brR" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -41131,7 +41171,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"brQ" = ( +"brS" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41157,7 +41197,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"brR" = ( +"brT" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -41189,7 +41229,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"brS" = ( +"brU" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41215,7 +41255,7 @@ }, /turf/simulated/floor/plating, /area/bridge) -"brT" = ( +"brV" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41227,7 +41267,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/minibar) -"brU" = ( +"brW" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41239,7 +41279,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/bridge/minibar) -"brV" = ( +"brX" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -41253,7 +41293,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"brW" = ( +"brY" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -41269,7 +41309,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"brX" = ( +"brZ" = ( /obj/machinery/r_n_d/server/robotics, /turf/simulated/floor/bluegrid{ name = "Server Base"; @@ -41278,7 +41318,7 @@ temperature = 80 }, /area/server) -"brY" = ( +"bsa" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; icon_state = "map_vent_out"; @@ -41291,7 +41331,7 @@ temperature = 80 }, /area/server) -"brZ" = ( +"bsb" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -41306,7 +41346,7 @@ temperature = 80 }, /area/server) -"bsa" = ( +"bsc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -41330,7 +41370,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/server) -"bsb" = ( +"bsd" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" @@ -41341,7 +41381,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/server) -"bsc" = ( +"bse" = ( /obj/machinery/power/apc/high{ dir = 1; name = "north bump"; @@ -41358,7 +41398,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"bsd" = ( +"bsf" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer_1"; @@ -41373,7 +41413,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"bse" = ( +"bsg" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -41383,31 +41423,31 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsf" = ( +"bsh" = ( /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsg" = ( +"bsi" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsh" = ( +"bsj" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsi" = ( +"bsk" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsj" = ( +"bsl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -41422,7 +41462,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsk" = ( +"bsm" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 1 @@ -41432,18 +41472,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsl" = ( +"bsn" = ( /obj/machinery/atm{ pixel_y = 32 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsm" = ( +"bso" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsn" = ( +"bsp" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -41455,10 +41495,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bso" = ( +"bsq" = ( /turf/simulated/wall/r_wall, /area/rnd/research) -"bsp" = ( +"bsr" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32 }, @@ -41467,18 +41507,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsq" = ( +"bss" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Entrance" }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bsr" = ( +"bst" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bss" = ( +"bsu" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -41488,7 +41528,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bst" = ( +"bsv" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -41496,7 +41536,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bsu" = ( +"bsw" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -41511,7 +41551,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bsv" = ( +"bsx" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/polarized{ @@ -41527,7 +41567,7 @@ }, /turf/simulated/floor/plating, /area/medical/surgerywing) -"bsw" = ( +"bsy" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41539,7 +41579,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsx" = ( +"bsz" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41550,7 +41590,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsy" = ( +"bsA" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41565,7 +41605,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsz" = ( +"bsB" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41578,7 +41618,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsA" = ( +"bsC" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41603,7 +41643,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsB" = ( +"bsD" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -41611,7 +41651,7 @@ /obj/structure/table/rack, /turf/simulated/floor/tiled/white, /area/medical/surgerywing) -"bsC" = ( +"bsE" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ pixel_x = 6; @@ -41625,7 +41665,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsD" = ( +"bsF" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -41637,14 +41677,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsE" = ( +"bsG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsF" = ( +"bsH" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/corner/pink{ @@ -41661,7 +41701,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bsG" = ( +"bsI" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/adv{ pixel_x = 4; @@ -41674,7 +41714,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsH" = ( +"bsJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -41687,19 +41727,19 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsI" = ( +"bsK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsJ" = ( +"bsL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsK" = ( +"bsM" = ( /obj/effect/floor_decal/corner/lime{ dir = 6 }, @@ -41709,12 +41749,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/main_storage) -"bsL" = ( +"bsN" = ( /obj/effect/floor_decal/corner/pink, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsM" = ( +"bsO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -41724,7 +41764,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsN" = ( +"bsP" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -41745,7 +41785,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsO" = ( +"bsQ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 8 @@ -41765,7 +41805,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/triage) -"bsP" = ( +"bsR" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; @@ -41785,7 +41825,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsQ" = ( +"bsS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -41797,14 +41837,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bsR" = ( +"bsT" = ( /obj/effect/floor_decal/corner/beige/full, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsS" = ( +"bsU" = ( /obj/effect/floor_decal/corner/beige/full{ icon_state = "corner_white_full"; dir = 4 @@ -41816,7 +41856,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsT" = ( +"bsV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ @@ -41829,7 +41869,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bsU" = ( +"bsW" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -41843,7 +41883,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsV" = ( +"bsX" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -41859,7 +41899,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsW" = ( +"bsY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -41878,7 +41918,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsX" = ( +"bsZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -41894,7 +41934,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsY" = ( +"bta" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 4; @@ -41909,7 +41949,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bsZ" = ( +"btb" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -41930,7 +41970,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bta" = ( +"btc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41946,7 +41986,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btb" = ( +"btd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41965,7 +42005,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btc" = ( +"bte" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41977,7 +42017,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btd" = ( +"btf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -41990,7 +42030,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bte" = ( +"btg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42002,7 +42042,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btf" = ( +"bth" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42016,7 +42056,7 @@ /obj/effect/floor_decal/sign/c2, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"btg" = ( +"bti" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42039,31 +42079,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bth" = ( +"btj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/medical/temp_morgue) -"bti" = ( +"btk" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall, /area/medical/temp_morgue) -"btj" = ( +"btl" = ( /turf/simulated/wall, /area/medical/temp_morgue) -"btk" = ( +"btm" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/medical/temp_morgue) -"btl" = ( +"btn" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/bridge) -"btm" = ( +"bto" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -42075,7 +42115,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/research_port) -"btn" = ( +"btp" = ( /obj/machinery/alarm/server{ dir = 4; pixel_x = -22; @@ -42094,7 +42134,7 @@ temperature = 80 }, /area/server) -"bto" = ( +"btq" = ( /obj/effect/landmark{ name = "blobstart" }, @@ -42108,7 +42148,7 @@ temperature = 80 }, /area/server) -"btp" = ( +"btr" = ( /turf/simulated/floor/bluegrid{ base_icon = 'icons/turf/flooring/plating.dmi'; icon = 'icons/turf/flooring/tiles.dmi'; @@ -42119,7 +42159,7 @@ temperature = 80 }, /area/server) -"btq" = ( +"bts" = ( /obj/machinery/door/firedoor{ dir = 8; name = "Firelock West" @@ -42136,7 +42176,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled/dark, /area/server) -"btr" = ( +"btt" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" @@ -42144,7 +42184,7 @@ /obj/machinery/meter, /turf/simulated/floor/tiled/dark, /area/server) -"bts" = ( +"btu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/structure/cable/green{ d1 = 1; @@ -42153,7 +42193,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"btt" = ( +"btv" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -42165,7 +42205,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"btu" = ( +"btw" = ( /obj/machinery/door/airlock/command{ name = "Server Room"; req_access = list(30) @@ -42178,7 +42218,7 @@ }, /turf/simulated/floor/tiled/dark, /area/server) -"btv" = ( +"btx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -42190,7 +42230,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btw" = ( +"bty" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -42201,7 +42241,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btx" = ( +"btz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -42220,7 +42260,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bty" = ( +"btA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -42234,7 +42274,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btz" = ( +"btB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -42253,7 +42293,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btA" = ( +"btC" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -42269,7 +42309,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btB" = ( +"btD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -42281,7 +42321,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btC" = ( +"btE" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -42299,7 +42339,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btD" = ( +"btF" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -42323,7 +42363,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btE" = ( +"btG" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -42334,7 +42374,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btF" = ( +"btH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ id_tag = "researchdoor"; @@ -42351,7 +42391,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"btG" = ( +"btI" = ( /obj/structure/sign/directions/evac{ dir = 1; icon_state = "direction_evac"; @@ -42372,7 +42412,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"btH" = ( +"btJ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -42388,14 +42428,14 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"btI" = ( +"btK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass{ name = "Holodeck" }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"btJ" = ( +"btL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -42419,7 +42459,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"btK" = ( +"btM" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/structure/closet/secure_closet/medical_wall{ name = "O- Blood Locker"; @@ -42430,7 +42470,7 @@ /obj/item/weapon/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"btL" = ( +"btN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -42443,7 +42483,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"btM" = ( +"btO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -42460,59 +42500,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"btN" = ( +"btP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ id_tag = "reanimation_door"; - name = "Reanimation Ward"; + name = "Recovery Ward"; req_access = list(66) }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"btO" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 4 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/medical/em_preop) -"btP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/main_storage) "btQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/lime{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/door/firedoor, /obj/structure/grille, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -42521,26 +42523,25 @@ icon_state = "rwindow"; dir = 1 }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/medical/em_preop) +"btR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 8 + }, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/main_storage) -"btR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_medical{ - name = "Main Storage"; - req_access = list(66) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/main_storage) "btS" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -42556,6 +42557,22 @@ /turf/simulated/floor/plating, /area/medical/main_storage) "btT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Main Storage"; + req_access = list(66) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/main_storage) +"btU" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ @@ -42571,7 +42588,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/icu) -"btU" = ( +"btV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -42590,7 +42607,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"btV" = ( +"btW" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -42601,7 +42618,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"btW" = ( +"btX" = ( /obj/machinery/button/remote/blast_door{ id = "GTRshutters"; name = "General Treatment Shutters Control"; @@ -42619,10 +42636,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"btX" = ( +"btY" = ( /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"btY" = ( +"btZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -42633,7 +42650,7 @@ }, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"btZ" = ( +"bua" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -42644,7 +42661,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bua" = ( +"bub" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -42661,10 +42678,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bub" = ( +"buc" = ( /turf/simulated/wall/r_wall, /area/medical/medbay2) -"buc" = ( +"bud" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -42676,7 +42693,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/medbay2) -"bud" = ( +"bue" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -42692,13 +42709,13 @@ }, /turf/simulated/floor/plating, /area/medical/medbay2) -"bue" = ( +"buf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/medical/medbay2) -"buf" = ( +"bug" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -42713,22 +42730,22 @@ }, /turf/simulated/floor/plating, /area/medical/medbay2) -"bug" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) "buh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/medical/medbay2) +"bui" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42744,7 +42761,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"bui" = ( +"buj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42760,7 +42777,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"buj" = ( +"buk" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -42778,7 +42795,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"buk" = ( +"bul" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42798,7 +42815,7 @@ }, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"bul" = ( +"bum" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42808,7 +42825,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bum" = ( +"bun" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -42820,14 +42837,14 @@ temperature = 278 }, /area/medical/temp_morgue) -"bun" = ( +"buo" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 32 }, /obj/structure/flora/pottedplant/random, /turf/simulated/floor/tiled, /area/bridge) -"buo" = ( +"bup" = ( /obj/structure/flora/pottedplant/random, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -42835,7 +42852,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bup" = ( +"buq" = ( /obj/machinery/r_n_d/server/core, /turf/simulated/floor/bluegrid{ name = "Server Base"; @@ -42844,7 +42861,7 @@ temperature = 80 }, /area/server) -"buq" = ( +"bur" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 4; external_pressure_bound = 0; @@ -42865,7 +42882,7 @@ temperature = 80 }, /area/server) -"bur" = ( +"bus" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -42889,25 +42906,25 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/server) -"bus" = ( +"but" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled/dark, /area/server) -"but" = ( +"buu" = ( /obj/machinery/computer/rdservercontrol, /turf/simulated/floor/tiled/dark, /area/server) -"buu" = ( +"buv" = ( /obj/machinery/computer/message_monitor, /obj/structure/sign/nosmoking_1{ pixel_y = -32 }, /turf/simulated/floor/tiled/dark, /area/server) -"buv" = ( +"buw" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -42916,7 +42933,7 @@ /obj/effect/floor_decal/corner/paleblue/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buw" = ( +"bux" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -42930,13 +42947,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bux" = ( +"buy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buy" = ( +"buz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42946,7 +42963,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buz" = ( +"buA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42958,7 +42975,7 @@ /obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buA" = ( +"buB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -42976,7 +42993,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buB" = ( +"buC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42986,13 +43003,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buC" = ( +"buD" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buD" = ( +"buE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43001,7 +43018,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buE" = ( +"buF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -43019,7 +43036,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buF" = ( +"buG" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32 }, @@ -43028,11 +43045,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buG" = ( +"buH" = ( /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buH" = ( +"buI" = ( /obj/machinery/shower{ dir = 1 }, @@ -43042,7 +43059,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"buI" = ( +"buJ" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Research Entrance"; dir = 4 @@ -43056,7 +43073,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"buJ" = ( +"buK" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -43071,10 +43088,10 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"buK" = ( +"buL" = ( /turf/simulated/floor/holofloor/reinforced, /area/holodeck/alphadeck) -"buL" = ( +"buM" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Medical Entrance"; dir = 8 @@ -43084,7 +43101,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"buM" = ( +"buN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -43110,18 +43127,18 @@ }, /turf/simulated/floor/plating, /area/medical/emt) -"buN" = ( +"buO" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/toxin, /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buO" = ( +"buP" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buP" = ( +"buQ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire, /obj/machinery/light{ @@ -43129,7 +43146,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buQ" = ( +"buR" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/adv, /obj/machinery/alarm{ @@ -43147,7 +43164,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buR" = ( +"buS" = ( /obj/machinery/power/apc{ dir = 1; is_critical = 1; @@ -43170,7 +43187,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buS" = ( +"buT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_medical{ name = "EMT Quarters"; @@ -43192,7 +43209,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"buT" = ( +"buU" = ( /obj/effect/floor_decal/sign/emt, /obj/structure/cable/green{ d1 = 4; @@ -43210,7 +43227,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buU" = ( +"buV" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -43227,7 +43244,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buV" = ( +"buW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -43250,7 +43267,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buW" = ( +"buX" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -43271,7 +43288,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buX" = ( +"buY" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; @@ -43293,7 +43310,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"buY" = ( +"buZ" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -43310,7 +43327,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"buZ" = ( +"bva" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -43330,7 +43347,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bva" = ( +"bvb" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 4 @@ -43354,7 +43371,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvb" = ( +"bvc" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43375,7 +43392,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvc" = ( +"bvd" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43400,7 +43417,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvd" = ( +"bve" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43425,7 +43442,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bve" = ( +"bvf" = ( /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; dir = 5 @@ -43449,7 +43466,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvf" = ( +"bvg" = ( /obj/effect/floor_decal/corner/pink, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; @@ -43472,7 +43489,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bvg" = ( +"bvh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -43489,11 +43506,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/icu) -"bvh" = ( +"bvi" = ( /obj/machinery/atmospherics/unary/cryo_cell, /turf/simulated/floor/tiled, /area/medical/icu) -"bvi" = ( +"bvj" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -43518,7 +43535,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/medical/icu) -"bvj" = ( +"bvk" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -43529,7 +43546,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bvk" = ( +"bvl" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ d1 = 1; @@ -43543,7 +43560,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bvl" = ( +"bvm" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -43555,7 +43572,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bvm" = ( +"bvn" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -43564,7 +43581,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bvn" = ( +"bvo" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/weapon/storage/box/masks{ @@ -43578,7 +43595,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bvo" = ( +"bvp" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/item/device/mass_spectrometer, @@ -43588,7 +43605,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bvp" = ( +"bvq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -43605,7 +43622,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/gen_treatment) -"bvq" = ( +"bvr" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -43617,7 +43634,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bvr" = ( +"bvs" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -43626,10 +43643,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bvs" = ( +"bvt" = ( /turf/simulated/open, /area/turbolift/medical_station) -"bvt" = ( +"bvu" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -43645,10 +43662,10 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvu" = ( +"bvv" = ( /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvv" = ( +"bvw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -43667,7 +43684,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvw" = ( +"bvx" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -43685,7 +43702,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bvx" = ( +"bvy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ name = "Temporary Morgue"; @@ -43708,7 +43725,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bvy" = ( +"bvz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -43725,7 +43742,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bvz" = ( +"bvA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -43746,7 +43763,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bvA" = ( +"bvB" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -43758,7 +43775,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bvB" = ( +"bvC" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -43772,7 +43789,7 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/bridge) -"bvC" = ( +"bvD" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -43782,14 +43799,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bvD" = ( +"bvE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bvE" = ( +"bvF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -43802,7 +43819,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bvF" = ( +"bvG" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -43813,7 +43830,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bvG" = ( +"bvH" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -43826,10 +43843,10 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bvH" = ( +"bvI" = ( /turf/simulated/wall/r_wall, /area/rnd/rdoffice) -"bvI" = ( +"bvJ" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -43841,7 +43858,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bvJ" = ( +"bvK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -43852,7 +43869,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bvK" = ( +"bvL" = ( /obj/structure/closet/medical_wall{ pixel_x = 32 }, @@ -43860,10 +43877,10 @@ /obj/item/stack/medical/ointment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bvL" = ( +"bvM" = ( /turf/simulated/wall/r_wall, /area/rnd/xenobiology/xenoflora) -"bvM" = ( +"bvN" = ( /obj/machinery/door/airlock/research{ name = "Xenoflora Research"; req_access = list(55) @@ -43879,10 +43896,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) -"bvN" = ( +"bvO" = ( /turf/simulated/wall/r_wall, /area/rnd/lab) -"bvO" = ( +"bvP" = ( /obj/machinery/door/airlock/research{ name = "Research and Development"; req_access = list(7) @@ -43898,7 +43915,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bvP" = ( +"bvQ" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -43910,7 +43927,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bvQ" = ( +"bvR" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -43925,7 +43942,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bvR" = ( +"bvS" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; name = "Chapel"; @@ -43933,7 +43950,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bvS" = ( +"bvT" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -43952,13 +43969,13 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvT" = ( +"bvU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvU" = ( +"bvV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43968,7 +43985,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvV" = ( +"bvW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 8; @@ -43979,10 +43996,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvW" = ( +"bvX" = ( /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bvX" = ( +"bvY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -44000,7 +44017,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/emt) -"bvY" = ( +"bvZ" = ( /obj/structure/bed/chair/wheelchair{ icon_state = "wheelchair"; dir = 4 @@ -44015,7 +44032,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bvZ" = ( +"bwa" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44023,7 +44040,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bwa" = ( +"bwb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/multi_tile/glass{ autoclose = 1; @@ -44038,7 +44055,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bwb" = ( +"bwc" = ( /obj/effect/floor_decal/corner/red{ icon_state = "corner_white"; dir = 9 @@ -44048,21 +44065,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwc" = ( +"bwd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwd" = ( +"bwe" = ( /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwe" = ( +"bwf" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwf" = ( +"bwg" = ( /obj/machinery/requests_console{ department = "Medical Bay"; pixel_x = 0; @@ -44070,13 +44087,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwg" = ( +"bwh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwh" = ( +"bwi" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -44091,7 +44108,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bwi" = ( +"bwj" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -44105,7 +44122,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/icu) -"bwj" = ( +"bwk" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -44120,7 +44137,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bwk" = ( +"bwl" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 10 @@ -44131,7 +44148,7 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"bwl" = ( +"bwm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44142,11 +44159,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bwm" = ( +"bwn" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bwn" = ( +"bwo" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/structure/closet/secure_closet/medical_wall{ name = "O- Blood Locker"; @@ -44161,18 +44178,18 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bwo" = ( +"bwp" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bwp" = ( +"bwq" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bwq" = ( +"bwr" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -44192,7 +44209,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bwr" = ( +"bws" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -44206,7 +44223,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/gen_treatment) -"bws" = ( +"bwt" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -44215,7 +44232,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bwt" = ( +"bwu" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -44234,14 +44251,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bwu" = ( +"bwv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ icon_state = "map_scrubber_on"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bwv" = ( +"bww" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44253,7 +44270,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bww" = ( +"bwx" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -44266,14 +44283,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bwx" = ( +"bwy" = ( /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/dark{ name = "cooled dark floor"; temperature = 278 }, /area/medical/temp_morgue) -"bwy" = ( +"bwz" = ( /obj/machinery/alarm/cold{ dir = 1; pixel_y = -22 @@ -44285,7 +44302,7 @@ temperature = 278 }, /area/medical/temp_morgue) -"bwz" = ( +"bwA" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Temporary Morgue"; dir = 1 @@ -44299,11 +44316,11 @@ temperature = 278 }, /area/medical/temp_morgue) -"bwA" = ( +"bwB" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bwB" = ( +"bwC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -44315,7 +44332,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bwC" = ( +"bwD" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -44325,7 +44342,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bwD" = ( +"bwE" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -44335,7 +44352,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bwE" = ( +"bwF" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44347,7 +44364,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bwF" = ( +"bwG" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -44357,7 +44374,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bwG" = ( +"bwH" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -44368,7 +44385,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bwH" = ( +"bwI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -44380,7 +44397,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwI" = ( +"bwJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -44389,7 +44406,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwJ" = ( +"bwK" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -44402,12 +44419,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwK" = ( +"bwL" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bwL" = ( +"bwM" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -44420,7 +44437,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwM" = ( +"bwN" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -44433,7 +44450,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwN" = ( +"bwO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44458,7 +44475,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwO" = ( +"bwP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44473,7 +44490,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwP" = ( +"bwQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -44489,7 +44506,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwQ" = ( +"bwR" = ( /obj/machinery/keycard_auth{ pixel_x = 0; pixel_y = 24 @@ -44512,7 +44529,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwR" = ( +"bwS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44530,7 +44547,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwS" = ( +"bwT" = ( /obj/machinery/status_display{ layer = 4; pixel_x = 0; @@ -44553,7 +44570,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bwT" = ( +"bwU" = ( /obj/machinery/door/airlock/command{ id_tag = "researchdoor"; name = "Research Director's Office"; @@ -44581,7 +44598,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bwU" = ( +"bwV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -44601,7 +44618,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bwV" = ( +"bwW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -44624,13 +44641,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bwW" = ( +"bwX" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bwX" = ( +"bwY" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -44647,7 +44664,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"bwY" = ( +"bwZ" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 8 @@ -44658,7 +44675,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bwZ" = ( +"bxa" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -44674,7 +44691,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxa" = ( +"bxb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -44694,7 +44711,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxb" = ( +"bxc" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -44718,7 +44735,7 @@ /obj/item/weapon/storage/box/syringes, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxc" = ( +"bxd" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -44735,7 +44752,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxd" = ( +"bxe" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = list(47) }, @@ -44745,7 +44762,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bxe" = ( +"bxf" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -44760,7 +44777,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxf" = ( +"bxg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -44774,17 +44791,17 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxg" = ( +"bxh" = ( /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxh" = ( +"bxi" = ( /obj/structure/sink{ pixel_y = 28 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxi" = ( +"bxj" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -44798,7 +44815,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bxj" = ( +"bxk" = ( /obj/structure/table/reinforced, /obj/machinery/door/window{ base_state = "right"; @@ -44823,7 +44840,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lab) -"bxk" = ( +"bxl" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 4" }, @@ -44833,7 +44850,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxl" = ( +"bxm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -44842,14 +44859,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxm" = ( +"bxn" = ( /obj/machinery/station_map{ dir = 4; pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxn" = ( +"bxo" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -44866,7 +44883,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxo" = ( +"bxp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -44879,15 +44896,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bxp" = ( +"bxq" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bxq" = ( +"bxr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bxr" = ( +"bxs" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -44902,10 +44919,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bxs" = ( +"bxt" = ( /turf/simulated/wall, /area/medical/emt) -"bxt" = ( +"bxu" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -44916,7 +44933,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bxu" = ( +"bxv" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -44928,14 +44945,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bxv" = ( +"bxw" = ( /obj/machinery/vending/medical, /turf/simulated/wall, /area/medical/em_preop) -"bxw" = ( +"bxx" = ( /turf/simulated/wall, /area/medical/medbay) -"bxx" = ( +"bxy" = ( /obj/machinery/door/airlock{ name = "Public Bathrooms"; req_access = null @@ -44944,20 +44961,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bxy" = ( +"bxz" = ( /turf/simulated/wall, /area/medical/cryo) -"bxz" = ( +"bxA" = ( /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bxA" = ( +"bxB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bxB" = ( +"bxC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -44970,7 +44987,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bxC" = ( +"bxD" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -44988,7 +45005,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bxD" = ( +"bxE" = ( /obj/machinery/hologram/holopad, /obj/structure/sink{ dir = 8; @@ -45002,7 +45019,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bxE" = ( +"bxF" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; @@ -45016,7 +45033,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bxF" = ( +"bxG" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -45031,7 +45048,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bxG" = ( +"bxH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -45039,7 +45056,7 @@ /obj/machinery/dna_scannernew, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bxH" = ( +"bxI" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -45048,7 +45065,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bxI" = ( +"bxJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -45056,7 +45073,7 @@ /obj/machinery/computer/med_data, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bxJ" = ( +"bxK" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -45067,7 +45084,7 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/bridge) -"bxK" = ( +"bxL" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -45082,7 +45099,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bxL" = ( +"bxM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -45095,14 +45112,14 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bxM" = ( +"bxN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/bridge) -"bxN" = ( +"bxO" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -45115,7 +45132,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bxO" = ( +"bxP" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -45126,7 +45143,7 @@ /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/bridge) -"bxP" = ( +"bxQ" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -45147,7 +45164,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"bxQ" = ( +"bxR" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -45158,7 +45175,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxR" = ( +"bxS" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; frequency = 1379; @@ -45190,7 +45207,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxS" = ( +"bxT" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -45204,7 +45221,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxT" = ( +"bxU" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -45220,7 +45237,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxU" = ( +"bxV" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; @@ -45228,17 +45245,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxV" = ( +"bxW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxW" = ( +"bxX" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bxX" = ( +"bxY" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -45247,14 +45264,14 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bxY" = ( +"bxZ" = ( /obj/machinery/door/window{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bxZ" = ( +"bya" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -45268,17 +45285,17 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bya" = ( +"byb" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/papershredder, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"byb" = ( +"byc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"byc" = ( +"byd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -45287,7 +45304,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"byd" = ( +"bye" = ( /obj/structure/table/standard, /obj/item/weapon/stamp/rd{ pixel_x = 3; @@ -45303,12 +45320,12 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bye" = ( +"byf" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"byf" = ( +"byg" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -45331,13 +45348,13 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"byg" = ( +"byh" = ( /obj/effect/floor_decal/corner/purple{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"byh" = ( +"byi" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -45350,7 +45367,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"byi" = ( +"byj" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -45358,24 +45375,24 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byj" = ( +"byk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byk" = ( +"byl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byl" = ( +"bym" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bym" = ( +"byn" = ( /obj/structure/closet/secure_closet/hydroponics{ req_access = list(47) }, @@ -45388,7 +45405,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"byn" = ( +"byo" = ( /obj/item/toy/figure/scientist, /obj/machinery/autolathe, /obj/effect/floor_decal/corner/mauve{ @@ -45400,7 +45417,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byo" = ( +"byp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -45413,7 +45430,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byp" = ( +"byq" = ( /obj/structure/table/standard, /obj/item/weapon/packageWrap, /obj/item/weapon/stock_parts/matter_bin, @@ -45426,13 +45443,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byq" = ( +"byr" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"byr" = ( +"bys" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -45442,7 +45459,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bys" = ( +"byt" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -45464,11 +45481,11 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"byt" = ( +"byu" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"byu" = ( +"byv" = ( /obj/machinery/button/remote/blast_door{ id = "emtshutter"; name = "Garage Shutters Control"; @@ -45482,11 +45499,11 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byv" = ( +"byw" = ( /obj/machinery/computer/crew, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byw" = ( +"byx" = ( /obj/structure/table/standard, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, @@ -45501,13 +45518,13 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byx" = ( +"byy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byy" = ( +"byz" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/mechanical, /obj/item/weapon/crowbar/red, @@ -45520,7 +45537,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"byz" = ( +"byA" = ( /obj/machinery/iv_drip, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -45529,7 +45546,7 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"byA" = ( +"byB" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45547,7 +45564,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"byB" = ( +"byC" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -45563,7 +45580,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"byC" = ( +"byD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -45572,7 +45589,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"byD" = ( +"byE" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -45586,20 +45603,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"byE" = ( +"byF" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer" }, /turf/simulated/floor/plating, /area/medical/cryo) -"byF" = ( +"byG" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"byG" = ( +"byH" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45619,7 +45636,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"byH" = ( +"byI" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -45636,18 +45653,18 @@ }, /turf/simulated/floor/tiled, /area/medical/icu) -"byI" = ( +"byJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byJ" = ( +"byK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byK" = ( +"byL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ icon_state = "intact"; dir = 4 @@ -45663,14 +45680,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byL" = ( +"byM" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byM" = ( +"byN" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -45686,20 +45703,20 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"byN" = ( +"byO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byO" = ( +"byP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byP" = ( +"byQ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -45712,7 +45729,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"byQ" = ( +"byR" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -45726,7 +45743,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"byR" = ( +"byS" = ( /obj/machinery/computer/cloning, /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; @@ -45737,13 +45754,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byS" = ( +"byT" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byT" = ( +"byU" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -45751,14 +45768,14 @@ /obj/structure/closet, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"byU" = ( +"byV" = ( /turf/simulated/wall, /area/medical/genetics_cloning) -"byV" = ( +"byW" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byW" = ( +"byX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -45772,7 +45789,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byX" = ( +"byY" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -45790,7 +45807,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byY" = ( +"byZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -45805,7 +45822,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"byZ" = ( +"bza" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -45819,7 +45836,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bza" = ( +"bzb" = ( /obj/machinery/camera/network/command{ c_tag = "Bridge - Lift Lobby"; dir = 4 @@ -45833,14 +45850,14 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzb" = ( +"bzc" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/bridge) -"bzc" = ( +"bzd" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -45858,7 +45875,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzd" = ( +"bze" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -45876,7 +45893,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bze" = ( +"bzf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -45890,7 +45907,7 @@ }, /turf/simulated/floor/tiled, /area/bridge) -"bzf" = ( +"bzg" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -45908,7 +45925,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bzg" = ( +"bzh" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -45922,7 +45939,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bzh" = ( +"bzi" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -45934,13 +45951,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bzi" = ( +"bzj" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzj" = ( +"bzk" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/item/device/eftpos{ @@ -45948,7 +45965,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzk" = ( +"bzl" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -45960,7 +45977,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bzl" = ( +"bzm" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -45977,7 +45994,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bzm" = ( +"bzn" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -45999,7 +46016,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bzn" = ( +"bzo" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 8; @@ -46007,7 +46024,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzo" = ( +"bzp" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -46035,12 +46052,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzp" = ( +"bzq" = ( /obj/item/modular_computer/console/preset/research, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bzq" = ( +"bzr" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green{ @@ -46059,10 +46076,10 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bzr" = ( +"bzs" = ( /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzs" = ( +"bzt" = ( /obj/machinery/vending/hydronutrients{ categories = 3 }, @@ -46070,12 +46087,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzt" = ( +"bzu" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzu" = ( +"bzv" = ( /obj/structure/closet/crate/hydroponics/prespawned, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -46083,7 +46100,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bzv" = ( +"bzw" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/capacitor, /obj/item/weapon/stock_parts/manipulator, @@ -46099,7 +46116,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzw" = ( +"bzx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -46110,7 +46127,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzx" = ( +"bzy" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/capacitor, /obj/item/weapon/stock_parts/capacitor, @@ -46123,11 +46140,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzy" = ( +"bzz" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzz" = ( +"bzA" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -46145,7 +46162,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bzA" = ( +"bzB" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -46164,7 +46181,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bzB" = ( +"bzC" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -46175,7 +46192,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bzC" = ( +"bzD" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "KEEP CLEAR: MEDICAL EXOSUIT PARKING"; @@ -46190,14 +46207,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bzD" = ( +"bzE" = ( /obj/machinery/door/airlock/glass_medical{ name = "EMT Garage Access"; req_access = list(67) }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzE" = ( +"bzF" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Pill Cabinet"; pixel_x = -32; @@ -46208,7 +46225,7 @@ /obj/item/weapon/storage/pill_bottle/spaceacillin, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzF" = ( +"bzG" = ( /obj/structure/table/standard, /obj/item/weapon/storage/belt/medical/emt, /obj/item/weapon/storage/belt/medical/emt, @@ -46220,7 +46237,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bzG" = ( +"bzH" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -46239,13 +46256,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzH" = ( +"bzI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzI" = ( +"bzJ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46261,7 +46278,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bzJ" = ( +"bzK" = ( /obj/structure/sink{ icon_state = "sink"; dir = 8; @@ -46275,14 +46292,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzK" = ( +"bzL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzL" = ( +"bzM" = ( /obj/machinery/light/small{ dir = 4 }, @@ -46291,7 +46308,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bzM" = ( +"bzN" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -46301,7 +46318,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzN" = ( +"bzO" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /obj/structure/cable/green{ d1 = 2; @@ -46310,7 +46327,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzO" = ( +"bzP" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -46326,7 +46343,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bzP" = ( +"bzQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -46338,7 +46355,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bzQ" = ( +"bzR" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46358,7 +46375,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bzR" = ( +"bzS" = ( /obj/machinery/iv_drip, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -46371,10 +46388,10 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzS" = ( +"bzT" = ( /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzT" = ( +"bzU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -46387,13 +46404,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzU" = ( +"bzV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzV" = ( +"bzW" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46406,7 +46423,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bzW" = ( +"bzX" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 10 @@ -46416,7 +46433,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bzX" = ( +"bzY" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 10 @@ -46427,7 +46444,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bzY" = ( +"bzZ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 6 @@ -46441,7 +46458,7 @@ /obj/item/clothing/accessory/stethoscope, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"bzZ" = ( +"bAa" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -46453,7 +46470,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bAa" = ( +"bAb" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -46461,7 +46478,7 @@ /obj/machinery/clonepod, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAb" = ( +"bAc" = ( /obj/structure/bed/roller, /obj/machinery/power/apc{ dir = 2; @@ -46475,7 +46492,7 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAc" = ( +"bAd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -46486,7 +46503,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAd" = ( +"bAe" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -46497,7 +46514,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/genetics_cloning) -"bAe" = ( +"bAf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ @@ -46507,13 +46524,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bAf" = ( +"bAg" = ( /obj/machinery/light/small/emergency, /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bAg" = ( +"bAh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -46523,7 +46540,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bAh" = ( +"bAi" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -46540,7 +46557,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bAi" = ( +"bAj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -46555,7 +46572,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bAj" = ( +"bAk" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -46574,7 +46591,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAk" = ( +"bAl" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -46582,7 +46599,7 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAl" = ( +"bAm" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -46596,7 +46613,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bAm" = ( +"bAn" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -46607,7 +46624,7 @@ /obj/structure/lamarr, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bAn" = ( +"bAo" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -46620,11 +46637,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bAo" = ( +"bAp" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bAp" = ( +"bAq" = ( /obj/machinery/computer/robotics, /obj/machinery/light{ dir = 4; @@ -46634,13 +46651,13 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bAq" = ( +"bAr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAr" = ( +"bAs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -46653,7 +46670,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAs" = ( +"bAt" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Corridor Camera 2"; dir = 8; @@ -46664,18 +46681,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bAt" = ( +"bAu" = ( /obj/machinery/seed_storage/xenobotany, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAu" = ( +"bAv" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAv" = ( +"bAw" = ( /obj/machinery/smartfridge, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -46683,7 +46700,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bAw" = ( +"bAx" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/console_screen, /obj/item/weapon/stock_parts/console_screen, @@ -46707,7 +46724,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAx" = ( +"bAy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -46720,7 +46737,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAy" = ( +"bAz" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/manipulator, /obj/item/weapon/stock_parts/scanning_module, @@ -46733,10 +46750,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAz" = ( +"bAA" = ( /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAA" = ( +"bAB" = ( /obj/structure/table/standard, /obj/machinery/light{ dir = 4; @@ -46764,13 +46781,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bAB" = ( +"bAC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bAC" = ( +"bAD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ dir = 8; @@ -46779,16 +46796,16 @@ }, /turf/simulated/floor/plating, /area/medical/emt) -"bAD" = ( +"bAE" = ( /obj/machinery/light/small, /turf/simulated/floor/plating, /area/medical/emt) -"bAE" = ( +"bAF" = ( /obj/machinery/mech_recharger, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/medical/emt) -"bAF" = ( +"bAG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -46806,7 +46823,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/emt) -"bAG" = ( +"bAH" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/item/roller, /obj/item/roller, @@ -46817,7 +46834,7 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bAH" = ( +"bAI" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/emergency, /obj/item/device/gps{ @@ -46828,10 +46845,10 @@ }, /turf/simulated/floor/tiled/dark, /area/medical/emt) -"bAI" = ( +"bAJ" = ( /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bAJ" = ( +"bAK" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46844,16 +46861,16 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bAK" = ( +"bAL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bAL" = ( +"bAM" = ( /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bAM" = ( +"bAN" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -46863,7 +46880,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bAN" = ( +"bAO" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ icon_state = "map"; dir = 4 @@ -46877,7 +46894,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bAO" = ( +"bAP" = ( /obj/machinery/camera/network/medbay{ c_tag = "Medical - Main Hallway 2"; dir = 4; @@ -46889,7 +46906,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bAP" = ( +"bAQ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -46907,7 +46924,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bAQ" = ( +"bAR" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -46915,7 +46932,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAR" = ( +"bAS" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Stabilization Kit"; pixel_x = 0; @@ -46930,7 +46947,7 @@ /obj/item/weapon/storage/pill_bottle/tramadol, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAS" = ( +"bAT" = ( /obj/structure/closet/secure_closet/medical_wall{ name = "Medication Closet"; pixel_x = 0; @@ -46944,7 +46961,7 @@ /obj/item/weapon/reagent_containers/syringe, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAT" = ( +"bAU" = ( /obj/structure/bed, /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -46958,7 +46975,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/icu) -"bAU" = ( +"bAV" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -46971,25 +46988,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/gen_treatment) -"bAV" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/gen_treatment) "bAW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; - dir = 4 + dir = 8 }, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -47000,6 +47003,20 @@ /turf/simulated/floor/plating, /area/medical/gen_treatment) "bAX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/medical/gen_treatment) +"bAY" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 9 @@ -47009,7 +47026,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bAY" = ( +"bAZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -47019,29 +47036,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay2) -"bAZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "LCKDshutters"; - name = "MedBay Lockdown Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/medical/medbay2) "bBa" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -47052,6 +47046,9 @@ }, /obj/structure/window/reinforced, /obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, /obj/machinery/door/blast/shutters{ density = 0; dir = 2; @@ -47064,6 +47061,26 @@ /area/medical/medbay2) "bBb" = ( /obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "LCKDshutters"; + name = "MedBay Lockdown Shutters"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/medical/medbay2) +"bBc" = ( +/obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 }, @@ -47082,7 +47099,7 @@ }, /turf/simulated/floor/plating, /area/medical/medbay2) -"bBc" = ( +"bBd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -47098,10 +47115,10 @@ }, /turf/simulated/floor/plating, /area/medical/genetics_cloning) -"bBd" = ( +"bBe" = ( /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bBe" = ( +"bBf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -47111,7 +47128,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bBf" = ( +"bBg" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -47123,7 +47140,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBg" = ( +"bBh" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1 @@ -47132,7 +47149,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBh" = ( +"bBi" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -47144,7 +47161,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBi" = ( +"bBj" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -47158,7 +47175,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bBj" = ( +"bBk" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -47170,14 +47187,14 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBk" = ( +"bBl" = ( /obj/structure/table/standard, /obj/machinery/computer/skills{ icon_state = "medlaptop" }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBl" = ( +"bBm" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -47188,7 +47205,7 @@ }, /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bBm" = ( +"bBn" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -47201,7 +47218,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bBn" = ( +"bBo" = ( /obj/effect/floor_decal/corner/purple{ dir = 9 }, @@ -47215,32 +47232,32 @@ /obj/effect/floor_decal/corner/grey, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bBo" = ( +"bBp" = ( /obj/machinery/computer/mecha, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bBp" = ( +"bBq" = ( /obj/machinery/atmospherics/pipe/manifold/visible/red{ icon_state = "map"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBq" = ( +"bBr" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8; name = "To Waste" }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBr" = ( +"bBs" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBs" = ( +"bBt" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -47251,7 +47268,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bBt" = ( +"bBu" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve/full, /obj/structure/reagent_dispensers/acid{ @@ -47262,7 +47279,7 @@ /obj/item/weapon/stock_parts/manipulator, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBu" = ( +"bBv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -47277,21 +47294,21 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBv" = ( +"bBw" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBw" = ( +"bBx" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBx" = ( +"bBy" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -47301,7 +47318,7 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bBy" = ( +"bBz" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -47314,7 +47331,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBz" = ( +"bBA" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -47327,7 +47344,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBA" = ( +"bBB" = ( /obj/machinery/door/firedoor, /obj/structure/sign/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; @@ -47343,7 +47360,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bBB" = ( +"bBC" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 9 @@ -47351,7 +47368,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bBC" = ( +"bBD" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -47368,26 +47385,26 @@ }, /turf/simulated/floor/tiled/white, /area/medical/em_preop) -"bBD" = ( +"bBE" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bBE" = ( +"bBF" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bBF" = ( +"bBG" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/plating, /area/medical/cryo) -"bBG" = ( +"bBH" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ icon_state = "map"; dir = 4 @@ -47395,7 +47412,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/medical/cryo) -"bBH" = ( +"bBI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47413,13 +47430,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/cryo) -"bBI" = ( +"bBJ" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBJ" = ( +"bBK" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 6 @@ -47447,7 +47464,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBK" = ( +"bBL" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47464,7 +47481,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bBL" = ( +"bBM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical{ autoclose = 0; @@ -47483,7 +47500,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/medical/icu) -"bBM" = ( +"bBN" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -47500,7 +47517,7 @@ }, /turf/simulated/floor/plating, /area/medical/icu) -"bBN" = ( +"bBO" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47514,7 +47531,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBO" = ( +"bBP" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47530,7 +47547,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBP" = ( +"bBQ" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47542,7 +47559,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBQ" = ( +"bBR" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 5 @@ -47574,7 +47591,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBR" = ( +"bBS" = ( /obj/effect/floor_decal/corner/beige{ icon_state = "corner_white"; dir = 1 @@ -47591,7 +47608,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBS" = ( +"bBT" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -47616,7 +47633,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBT" = ( +"bBU" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -47637,7 +47654,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBU" = ( +"bBV" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -47662,7 +47679,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bBV" = ( +"bBW" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -47675,7 +47692,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bBW" = ( +"bBX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -47684,15 +47701,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bBX" = ( +"bBY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bBY" = ( +"bBZ" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bBZ" = ( +"bCa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -47707,7 +47724,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bCa" = ( +"bCb" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -47722,7 +47739,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCb" = ( +"bCc" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -47736,7 +47753,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCc" = ( +"bCd" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47753,7 +47770,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCd" = ( +"bCe" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -47768,7 +47785,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCe" = ( +"bCf" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -47782,10 +47799,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bCf" = ( +"bCg" = ( /turf/simulated/floor/carpet/blue, /area/rnd/rdoffice) -"bCg" = ( +"bCh" = ( /obj/structure/table/rack, /obj/machinery/light_switch{ pixel_y = -23 @@ -47801,7 +47818,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCh" = ( +"bCi" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine{ @@ -47809,7 +47826,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCi" = ( +"bCj" = ( /obj/structure/table/standard, /obj/item/device/taperecorder{ pixel_x = -3 @@ -47831,7 +47848,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCj" = ( +"bCk" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/requests_console{ name = "Research Director RC"; @@ -47843,12 +47860,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCk" = ( +"bCl" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/secure_closet/RD, /turf/simulated/floor/tiled/white, /area/rnd/rdoffice) -"bCl" = ( +"bCm" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green, @@ -47865,7 +47882,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bCm" = ( +"bCn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -47878,7 +47895,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bCn" = ( +"bCo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -47887,35 +47904,35 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bCo" = ( +"bCp" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCp" = ( +"bCq" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCq" = ( +"bCr" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCr" = ( +"bCs" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, /obj/machinery/meter, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCs" = ( +"bCt" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -47936,14 +47953,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bCt" = ( +"bCu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/r_n_d/destructive_analyzer, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCu" = ( +"bCv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -47957,49 +47974,49 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCv" = ( +"bCw" = ( /obj/machinery/r_n_d/protolathe, /obj/effect/floor_decal/industrial/warning{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bCw" = ( +"bCx" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bCx" = ( +"bCy" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bCy" = ( +"bCz" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCz" = ( +"bCA" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCA" = ( +"bCB" = ( /obj/structure/closet/emcloset, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCB" = ( +"bCC" = ( /obj/machinery/disposal, /obj/item/device/radio/intercom{ pixel_y = 27 @@ -48007,15 +48024,15 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCC" = ( +"bCD" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCD" = ( +"bCE" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bCE" = ( +"bCF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -48031,7 +48048,7 @@ }, /turf/simulated/floor/plating, /area/medical/em_preop) -"bCF" = ( +"bCG" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 1 @@ -48041,7 +48058,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/medical/medbay) -"bCG" = ( +"bCH" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 @@ -48053,7 +48070,7 @@ }, /turf/simulated/floor/plating, /area/medical/cryo) -"bCH" = ( +"bCI" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -48067,7 +48084,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCI" = ( +"bCJ" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 4 @@ -48090,7 +48107,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCJ" = ( +"bCK" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48112,30 +48129,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCK" = ( -/obj/effect/floor_decal/corner/pink{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/medbay) "bCL" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; @@ -48146,6 +48139,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/light{ + dir = 1 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48158,6 +48154,27 @@ /turf/simulated/floor/tiled/white, /area/medical/medbay) "bCM" = ( +/obj/effect/floor_decal/corner/pink{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/medbay) +"bCN" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48180,7 +48197,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCN" = ( +"bCO" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 5 @@ -48204,7 +48221,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCO" = ( +"bCP" = ( /obj/effect/floor_decal/corner/pink{ icon_state = "corner_white"; dir = 1 @@ -48221,7 +48238,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCP" = ( +"bCQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -48243,7 +48260,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCQ" = ( +"bCR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48256,7 +48273,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCR" = ( +"bCS" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -48275,17 +48292,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCS" = ( +"bCT" = ( /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCT" = ( +"bCU" = ( /obj/machinery/newscaster{ pixel_y = -30 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCU" = ( +"bCV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -48300,31 +48317,31 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bCV" = ( +"bCW" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCW" = ( +"bCX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bCX" = ( +"bCY" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bCY" = ( +"bCZ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bCZ" = ( +"bDa" = ( /turf/simulated/wall, /area/crew_quarters/sleep/research) -"bDa" = ( +"bDb" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 4; @@ -48348,7 +48365,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bDb" = ( +"bDc" = ( /obj/machinery/door/airlock/command{ id_tag = "rdmdoor"; name = "Research Director's Meeting Room"; @@ -48362,7 +48379,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"bDc" = ( +"bDd" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/cable/green, @@ -48388,7 +48405,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"bDd" = ( +"bDe" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -48400,7 +48417,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bDe" = ( +"bDf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -48416,7 +48433,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bDf" = ( +"bDg" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -48430,7 +48447,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/xenobiology/xenoflora) -"bDg" = ( +"bDh" = ( /obj/machinery/atmospherics/portables_connector, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -48438,7 +48455,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDh" = ( +"bDi" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer" @@ -48446,7 +48463,7 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDi" = ( +"bDj" = ( /obj/machinery/atmospherics/unary/heater{ dir = 2; icon_state = "heater" @@ -48454,21 +48471,21 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDj" = ( +"bDk" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1; name = "To Waste" }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDk" = ( +"bDl" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDl" = ( +"bDm" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -48483,7 +48500,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bDm" = ( +"bDn" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Research & Development"; dir = 4; @@ -48492,7 +48509,7 @@ /obj/machinery/computer/rdconsole/core, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDn" = ( +"bDo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -48511,7 +48528,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDo" = ( +"bDp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -48534,7 +48551,7 @@ /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/dark, /area/rnd/lab) -"bDp" = ( +"bDq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -48558,7 +48575,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bDq" = ( +"bDr" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/machinery/power/apc{ @@ -48576,7 +48593,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bDr" = ( +"bDs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -48596,13 +48613,13 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bDs" = ( +"bDt" = ( /obj/machinery/light, /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDt" = ( +"bDu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -48617,7 +48634,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDu" = ( +"bDv" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48629,7 +48646,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDv" = ( +"bDw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48647,7 +48664,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDw" = ( +"bDx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48664,24 +48681,24 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bDx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "bDy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"bDz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48703,7 +48720,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bDz" = ( +"bDA" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -48720,14 +48737,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDA" = ( +"bDB" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDB" = ( +"bDC" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48744,7 +48761,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDC" = ( +"bDD" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48752,7 +48769,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDD" = ( +"bDE" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 10 @@ -48760,7 +48777,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDE" = ( +"bDF" = ( /obj/effect/floor_decal/corner/grey{ icon_state = "corner_white"; dir = 8 @@ -48771,14 +48788,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDF" = ( +"bDG" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDG" = ( +"bDH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48790,7 +48807,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDH" = ( +"bDI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48800,7 +48817,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDI" = ( +"bDJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48816,7 +48833,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDJ" = ( +"bDK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -48827,10 +48844,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"bDK" = ( +"bDL" = ( /turf/simulated/wall, /area/maintenance/substation/medical) -"bDL" = ( +"bDM" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 1; @@ -48852,7 +48869,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bDM" = ( +"bDN" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -48867,7 +48884,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDN" = ( +"bDO" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48877,7 +48894,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDO" = ( +"bDP" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -48892,7 +48909,7 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDP" = ( +"bDQ" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -48908,7 +48925,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDQ" = ( +"bDR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -48922,37 +48939,37 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDR" = ( +"bDS" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bDS" = ( +"bDT" = ( /obj/structure/flora/pottedplant/random, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDT" = ( +"bDU" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bDU" = ( +"bDV" = ( /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bDV" = ( +"bDW" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bDW" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) "bDX" = ( -/obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bDY" = ( +/obj/effect/floor_decal/corner/mauve, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/research) +"bDZ" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Break Room" }, @@ -48963,7 +48980,7 @@ /obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bDZ" = ( +"bEa" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -48977,13 +48994,13 @@ /obj/effect/floor_decal/corner/mauve, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEa" = ( +"bEb" = ( /obj/structure/sink{ pixel_y = 28 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEb" = ( +"bEc" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -48992,7 +49009,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEc" = ( +"bEd" = ( /obj/machinery/vending/snack, /obj/machinery/status_display{ pixel_x = 0; @@ -49000,7 +49017,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEd" = ( +"bEe" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -49017,12 +49034,12 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/sleep/research) -"bEe" = ( +"bEf" = ( /obj/machinery/light, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEf" = ( +"bEg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49037,14 +49054,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEg" = ( +"bEh" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bEh" = ( +"bEi" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, @@ -49063,23 +49080,23 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEi" = ( +"bEj" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/meter, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEj" = ( +"bEk" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEk" = ( +"bEl" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEl" = ( +"bEm" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -49093,7 +49110,7 @@ /obj/machinery/botany/editor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bEm" = ( +"bEn" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ @@ -49106,20 +49123,20 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bEn" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/rnd/lab) "bEo" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/rnd/lab) +"bEp" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 4 @@ -49130,7 +49147,7 @@ }, /turf/simulated/floor/plating, /area/rnd/lab) -"bEp" = ( +"bEq" = ( /obj/machinery/door/airlock/research{ name = "Materials"; req_access = list(47) @@ -49146,16 +49163,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/lab) -"bEq" = ( +"bEr" = ( /turf/simulated/wall, /area/rnd/lab) -"bEr" = ( +"bEs" = ( /obj/machinery/status_display{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEs" = ( +"bEt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49166,16 +49183,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "bEu" = ( -/obj/machinery/door/firedoor, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -49184,6 +49192,15 @@ /turf/simulated/floor/tiled, /area/hallway/primary/central_one) "bEv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"bEw" = ( /obj/item/device/radio/intercom{ pixel_y = -27 }, @@ -49197,7 +49214,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEw" = ( +"bEx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49207,7 +49224,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEx" = ( +"bEy" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 3"; dir = 8 @@ -49218,7 +49235,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bEy" = ( +"bEz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -49236,7 +49253,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bEz" = ( +"bEA" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -49254,25 +49271,8 @@ /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bEA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bEB" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; d2 = 8; @@ -49290,6 +49290,23 @@ /turf/simulated/floor/plating, /area/maintenance/medbay) "bEC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bED" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -49307,10 +49324,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bED" = ( +"bEE" = ( /turf/simulated/wall, /area/medical/med_office) -"bEE" = ( +"bEF" = ( /obj/machinery/door/firedoor, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/airlock/glass_medical{ @@ -49326,7 +49343,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bEF" = ( +"bEG" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -49341,7 +49358,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/medical/med_office) -"bEG" = ( +"bEH" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49355,10 +49372,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/medical/med_office) -"bEH" = ( +"bEI" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/heads/cmo) -"bEI" = ( +"bEJ" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -49378,25 +49395,25 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bEJ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/polarized{ - id = "CMO" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "CMO" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/cmo) "bEK" = ( /obj/structure/grille, /obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized{ + id = "CMO" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "CMO" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/cmo) +"bEL" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ id = "CMO" }, @@ -49414,7 +49431,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bEL" = ( +"bEM" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ id_tag = "CMOdoor"; @@ -49431,7 +49448,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bEM" = ( +"bEN" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -49455,13 +49472,13 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bEN" = ( +"bEO" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Medical Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bEO" = ( +"bEP" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Medical" @@ -49476,7 +49493,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bEP" = ( +"bEQ" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -49492,7 +49509,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bEQ" = ( +"bER" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -49504,24 +49521,24 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bER" = ( +"bES" = ( /obj/turbolift_map_holder/aurora/command, /turf/simulated/floor/plating, /area/turbolift/command_sub) -"bES" = ( +"bET" = ( /obj/machinery/vending/cigarette, /obj/structure/sign/nosmoking_1{ pixel_x = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bET" = ( +"bEU" = ( /obj/effect/landmark/start{ name = "Xenobiologist" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEU" = ( +"bEV" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49532,7 +49549,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEV" = ( +"bEW" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49543,7 +49560,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEW" = ( +"bEX" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49558,7 +49575,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEX" = ( +"bEY" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -49569,17 +49586,17 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEY" = ( +"bEZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bEZ" = ( +"bFa" = ( /obj/item/device/radio/intercom{ pixel_x = 27 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFa" = ( +"bFb" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49594,7 +49611,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"bFb" = ( +"bFc" = ( /obj/machinery/door/airlock/glass_research{ name = "Genetics Laboratory"; req_access = list(47) @@ -49610,7 +49627,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bFc" = ( +"bFd" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -49625,7 +49642,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"bFd" = ( +"bFe" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 }, @@ -49639,7 +49656,7 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFe" = ( +"bFf" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -49651,7 +49668,7 @@ /obj/item/weapon/disk/botany, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFf" = ( +"bFg" = ( /obj/machinery/atmospherics/binary/pump, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -49659,7 +49676,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFg" = ( +"bFh" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/corner/green{ @@ -49667,14 +49684,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFh" = ( +"bFi" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFi" = ( +"bFj" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -49683,10 +49700,10 @@ /obj/machinery/botany/extractor, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bFj" = ( +"bFk" = ( /turf/simulated/wall/r_wall, /area/outpost/research/chemistry) -"bFk" = ( +"bFl" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers, /obj/effect/floor_decal/corner/mauve/full{ @@ -49695,7 +49712,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFl" = ( +"bFm" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 @@ -49703,14 +49720,14 @@ /obj/machinery/chemical_dispenser/full, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFm" = ( +"bFn" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFn" = ( +"bFo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49728,7 +49745,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFo" = ( +"bFp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49741,7 +49758,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFp" = ( +"bFq" = ( /obj/machinery/disposal, /obj/item/device/radio/intercom{ pixel_x = 27 @@ -49755,7 +49772,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bFq" = ( +"bFr" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ d1 = 1; @@ -49767,7 +49784,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFr" = ( +"bFs" = ( /obj/machinery/door/airlock/glass{ name = "Holodeck" }, @@ -49776,7 +49793,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hallway/primary/central_one) -"bFs" = ( +"bFt" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -49792,7 +49809,7 @@ }, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bFt" = ( +"bFu" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -49804,7 +49821,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFu" = ( +"bFv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -49820,10 +49837,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bFv" = ( +"bFw" = ( /turf/simulated/wall, /area/library) -"bFw" = ( +"bFx" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -49835,7 +49852,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bFx" = ( +"bFy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -49847,7 +49864,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bFy" = ( +"bFz" = ( /obj/machinery/door/airlock/glass{ name = "Library" }, @@ -49861,14 +49878,14 @@ }, /turf/simulated/floor/carpet, /area/library) -"bFz" = ( +"bFA" = ( /obj/machinery/door/airlock/glass{ name = "Library" }, /obj/machinery/door/firedoor, /turf/simulated/floor/carpet, /area/library) -"bFA" = ( +"bFB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; @@ -49876,7 +49893,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bFB" = ( +"bFC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -49892,7 +49909,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bFC" = ( +"bFD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/shutters{ density = 0; @@ -49914,7 +49931,7 @@ }, /turf/simulated/floor/plating, /area/medical/med_office) -"bFD" = ( +"bFE" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -49930,7 +49947,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFE" = ( +"bFF" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/trunk{ @@ -49938,7 +49955,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFF" = ( +"bFG" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/paper_bin{ pixel_x = -1; @@ -49949,7 +49966,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bFG" = ( +"bFH" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 8; @@ -49974,7 +49991,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bFH" = ( +"bFI" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 8 @@ -49995,7 +50012,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFI" = ( +"bFJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50015,7 +50032,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFJ" = ( +"bFK" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50032,7 +50049,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFK" = ( +"bFL" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50055,7 +50072,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFL" = ( +"bFM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50075,7 +50092,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFM" = ( +"bFN" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50097,7 +50114,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFN" = ( +"bFO" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 5 @@ -50127,7 +50144,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFO" = ( +"bFP" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 1 @@ -50143,7 +50160,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bFP" = ( +"bFQ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -50162,7 +50179,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFQ" = ( +"bFR" = ( /obj/machinery/power/terminal{ icon_state = "term"; dir = 1 @@ -50178,7 +50195,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFR" = ( +"bFS" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ dir = 2; @@ -50190,31 +50207,31 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bFS" = ( +"bFT" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bFT" = ( -/turf/simulated/floor/tiled, -/area/maintenance/medbay) "bFU" = ( -/obj/structure/closet, -/obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/medbay) "bFV" = ( /obj/structure/closet, /obj/random/loot, +/turf/simulated/floor/tiled, +/area/maintenance/medbay) +"bFW" = ( +/obj/structure/closet, +/obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bFW" = ( +"bFX" = ( /obj/machinery/papershredder, /obj/structure/extinguisher_cabinet{ pixel_x = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFX" = ( +"bFY" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 @@ -50226,18 +50243,18 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFY" = ( +"bFZ" = ( /obj/structure/table/standard, /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bFZ" = ( +"bGa" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGa" = ( +"bGb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -50255,14 +50272,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGb" = ( +"bGc" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bGc" = ( +"bGd" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Corridor Camera 1" }, @@ -50277,7 +50294,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bGd" = ( +"bGe" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/machinery/door/window/eastright{ dir = 1; @@ -50301,7 +50318,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGe" = ( +"bGf" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50314,7 +50331,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGf" = ( +"bGg" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50325,7 +50342,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGg" = ( +"bGh" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -50341,7 +50358,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bGh" = ( +"bGi" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -50349,7 +50366,7 @@ /obj/structure/bed/chair/office/dark, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bGi" = ( +"bGj" = ( /obj/structure/sign/nosmoking_1{ pixel_x = -32 }, @@ -50367,13 +50384,13 @@ /obj/item/weapon/reagent_containers/dropper, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGj" = ( +"bGk" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGk" = ( +"bGl" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -50391,7 +50408,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGl" = ( +"bGm" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -50412,7 +50429,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGm" = ( +"bGn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -50423,7 +50440,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGn" = ( +"bGo" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -50445,14 +50462,14 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bGo" = ( +"bGp" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGp" = ( +"bGq" = ( /obj/structure/sign/directions/evac{ dir = 8; icon_state = "direction_evac"; @@ -50466,7 +50483,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGq" = ( +"bGr" = ( /obj/structure/sign/directions/engineering{ dir = 8; icon_state = "direction_eng"; @@ -50484,7 +50501,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGr" = ( +"bGs" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/sign/directions/security{ dir = 4; @@ -50504,7 +50521,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGs" = ( +"bGt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -50515,7 +50532,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGt" = ( +"bGu" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Central Corridor - Camera 2"; dir = 8 @@ -50527,18 +50544,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bGu" = ( +"bGv" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bGv" = ( +"bGw" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"bGw" = ( +"bGx" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, @@ -50548,7 +50565,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bGx" = ( +"bGy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -50558,10 +50575,10 @@ }, /turf/simulated/floor/carpet, /area/library) -"bGy" = ( +"bGz" = ( /turf/simulated/floor/carpet, /area/library) -"bGz" = ( +"bGA" = ( /obj/machinery/status_display{ density = 0; layer = 4; @@ -50570,10 +50587,10 @@ }, /turf/simulated/floor/wood, /area/library) -"bGA" = ( +"bGB" = ( /turf/simulated/floor/wood, /area/library) -"bGB" = ( +"bGC" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -50584,11 +50601,11 @@ }, /turf/simulated/floor/wood, /area/library) -"bGC" = ( +"bGD" = ( /obj/machinery/libraryscanner, /turf/simulated/floor/wood, /area/library) -"bGD" = ( +"bGE" = ( /obj/machinery/librarycomp{ pixel_y = 0 }, @@ -50598,7 +50615,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bGE" = ( +"bGF" = ( /obj/machinery/light/small{ dir = 8 }, @@ -50608,7 +50625,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bGF" = ( +"bGG" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -50622,13 +50639,13 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bGG" = ( +"bGH" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" }, /turf/simulated/floor/tiled/dark, /area/library) -"bGH" = ( +"bGI" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -50643,7 +50660,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGI" = ( +"bGJ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/bed/chair/office/dark{ dir = 4 @@ -50653,13 +50670,13 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGJ" = ( +"bGK" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/computer/med_data/laptop, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bGK" = ( +"bGL" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ dir = 8; @@ -50677,7 +50694,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bGL" = ( +"bGM" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -50685,17 +50702,17 @@ /obj/machinery/computer/med_data, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGM" = ( +"bGN" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGN" = ( +"bGO" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/machinery/computer/skills, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGO" = ( +"bGP" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/bed/chair/comfy/teal{ dir = 8; @@ -50703,7 +50720,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGP" = ( +"bGQ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -50713,7 +50730,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGQ" = ( +"bGR" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -50721,7 +50738,7 @@ /obj/machinery/papershredder, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bGR" = ( +"bGS" = ( /obj/machinery/door/airlock/engineering{ name = "Medbay Substation"; req_one_access = list(11,24,5) @@ -50734,17 +50751,17 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/medical) -"bGS" = ( +"bGT" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bGT" = ( +"bGU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGU" = ( +"bGV" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -50758,7 +50775,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGV" = ( +"bGW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -50772,7 +50789,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGW" = ( +"bGX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -50787,7 +50804,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bGX" = ( +"bGY" = ( /obj/machinery/light/small/emergency{ dir = 8 }, @@ -50795,7 +50812,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bGY" = ( +"bGZ" = ( /obj/machinery/vending/coffee, /obj/structure/disposalpipe/segment{ dir = 4; @@ -50803,7 +50820,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bGZ" = ( +"bHa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50818,7 +50835,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHa" = ( +"bHb" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50840,7 +50857,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHb" = ( +"bHc" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50857,7 +50874,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHc" = ( +"bHd" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50879,7 +50896,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHd" = ( +"bHe" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50902,7 +50919,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHe" = ( +"bHf" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -50919,7 +50936,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHf" = ( +"bHg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50934,7 +50951,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHg" = ( +"bHh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50953,7 +50970,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bHh" = ( +"bHi" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -50975,7 +50992,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/research) -"bHi" = ( +"bHj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -50992,7 +51009,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bHj" = ( +"bHk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -51015,7 +51032,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bHk" = ( +"bHl" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 5 @@ -51030,7 +51047,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHl" = ( +"bHm" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -51039,7 +51056,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHm" = ( +"bHn" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /obj/machinery/light, /turf/simulated/floor/tiled{ @@ -51047,7 +51064,7 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHn" = ( +"bHo" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -51060,13 +51077,13 @@ dir = 5 }, /area/rnd/xenobiology/xenoflora) -"bHo" = ( +"bHp" = ( /obj/effect/floor_decal/corner/green/full, /obj/structure/table/standard, /obj/machinery/reagentgrinder, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bHp" = ( +"bHq" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 @@ -51076,7 +51093,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/xenoflora) -"bHq" = ( +"bHr" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, /obj/machinery/requests_console{ @@ -51089,7 +51106,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHr" = ( +"bHs" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -51107,7 +51124,7 @@ /obj/machinery/chem_master, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHs" = ( +"bHt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -51122,7 +51139,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHt" = ( +"bHu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -51132,7 +51149,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHu" = ( +"bHv" = ( /obj/structure/table/standard, /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -51146,7 +51163,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHv" = ( +"bHw" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; @@ -51154,7 +51171,7 @@ }, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bHw" = ( +"bHx" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -51178,7 +51195,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHx" = ( +"bHy" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -51192,7 +51209,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHy" = ( +"bHz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51201,7 +51218,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHz" = ( +"bHA" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -51215,7 +51232,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHA" = ( +"bHB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -51229,21 +51246,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_one) "bHC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_one) +"bHD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51261,7 +51278,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHD" = ( +"bHE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -51284,7 +51301,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHE" = ( +"bHF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51305,7 +51322,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHF" = ( +"bHG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51320,7 +51337,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHG" = ( +"bHH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -51337,7 +51354,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHH" = ( +"bHI" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -51359,7 +51376,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHI" = ( +"bHJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -51382,7 +51399,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bHJ" = ( +"bHK" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -51394,7 +51411,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bHK" = ( +"bHL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -51402,7 +51419,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bHL" = ( +"bHM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -51412,7 +51429,7 @@ }, /turf/simulated/floor/carpet, /area/library) -"bHM" = ( +"bHN" = ( /obj/structure/table/wood, /obj/machinery/door/window/westright{ dir = 8; @@ -51422,20 +51439,20 @@ }, /turf/simulated/floor/wood, /area/library) -"bHN" = ( +"bHO" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"bHO" = ( +"bHP" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bHP" = ( +"bHQ" = ( /obj/machinery/door/morgue{ dir = 2; name = "Private Study"; @@ -51447,14 +51464,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/library) -"bHQ" = ( +"bHR" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/dark, /area/library) -"bHR" = ( +"bHS" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -51463,7 +51480,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bHS" = ( +"bHT" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_y = 0 @@ -51478,7 +51495,7 @@ }, /turf/simulated/floor/tiled/dark, /area/library) -"bHT" = ( +"bHU" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/alarm{ dir = 4; @@ -51496,17 +51513,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHU" = ( +"bHV" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHV" = ( +"bHW" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/recharger, /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bHW" = ( +"bHX" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -51514,7 +51531,7 @@ /obj/item/modular_computer/console/preset/medical, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bHX" = ( +"bHY" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/bed/chair/office/light{ dir = 4 @@ -51541,26 +51558,26 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bHY" = ( +"bHZ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/item/weapon/folder/white, /obj/item/weapon/stamp/cmo, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bHZ" = ( +"bIa" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIa" = ( +"bIb" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIb" = ( +"bIc" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -51570,7 +51587,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIc" = ( +"bId" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -51582,15 +51599,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bId" = ( +"bIe" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 }, /obj/machinery/photocopier, +/obj/machinery/keycard_auth{ + pixel_x = 24 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIe" = ( +"bIf" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -51614,7 +51634,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIf" = ( +"bIg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -51632,7 +51652,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIg" = ( +"bIh" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -51650,15 +51670,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIh" = ( +"bIi" = ( /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIi" = ( +"bIj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIj" = ( +"bIk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -51667,7 +51687,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIk" = ( +"bIl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -51681,7 +51701,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIl" = ( +"bIm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -51696,25 +51716,14 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIm" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/research) "bIn" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; - dir = 1 + dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bIo" = ( -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 4 - }, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 1 @@ -51722,12 +51731,23 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) "bIp" = ( +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/sleep/research) +"bIq" = ( /obj/structure/noticeboard{ pixel_y = -32 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIq" = ( +"bIr" = ( /obj/machinery/light, /obj/machinery/power/apc{ dir = 2; @@ -51737,7 +51757,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIr" = ( +"bIs" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -51747,14 +51767,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/research) -"bIs" = ( +"bIt" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bIt" = ( +"bIu" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 @@ -51762,13 +51782,13 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/rnd/research) -"bIu" = ( +"bIv" = ( /turf/simulated/wall/r_wall, /area/rnd/misc_lab) -"bIv" = ( +"bIw" = ( /turf/simulated/wall, /area/outpost/research/chemistry) -"bIw" = ( +"bIx" = ( /obj/machinery/door/airlock/research{ name = "Miscellaneous Research Room"; req_one_access = list(7) @@ -51784,18 +51804,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/outpost/research/chemistry) -"bIx" = ( +"bIy" = ( /obj/machinery/newscaster{ pixel_y = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIy" = ( +"bIz" = ( /obj/machinery/light, /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIz" = ( +"bIA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -51805,26 +51825,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIA" = ( +"bIB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIB" = ( +"bIC" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bIC" = ( +"bID" = ( /obj/machinery/light, /obj/item/device/radio/intercom{ pixel_y = -26 }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bID" = ( +"bIE" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -51833,16 +51853,16 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/wood, /area/library) -"bIE" = ( +"bIF" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/floor/wood, /area/library) -"bIF" = ( +"bIG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet, /area/library) -"bIG" = ( +"bIH" = ( /obj/structure/table/wood, /obj/item/weapon/pen/blue{ pixel_x = 5; @@ -51854,7 +51874,7 @@ /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"bIH" = ( +"bII" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 4; @@ -51870,15 +51890,15 @@ }, /turf/simulated/floor/wood, /area/library) -"bII" = ( +"bIJ" = ( /turf/simulated/floor/tiled/dark, /area/library) -"bIJ" = ( +"bIK" = ( /obj/structure/cult/tome, /obj/item/clothing/under/suit_jacket/red, /turf/simulated/floor/tiled/dark, /area/library) -"bIK" = ( +"bIL" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -51887,7 +51907,7 @@ /obj/item/weapon/pen/invisible, /turf/simulated/floor/tiled/dark, /area/library) -"bIL" = ( +"bIM" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/papershredder, /obj/machinery/light_switch{ @@ -51899,14 +51919,14 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIM" = ( +"bIN" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/hologram/holopad, /obj/machinery/firealarm/south, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIN" = ( +"bIO" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/photocopier, /obj/structure/sign/nosmoking_1{ @@ -51915,7 +51935,7 @@ }, /turf/simulated/floor/tiled/white, /area/medical/med_office) -"bIO" = ( +"bIP" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "CMO" @@ -51931,7 +51951,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/crew_quarters/heads/cmo) -"bIP" = ( +"bIQ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 9 @@ -51939,7 +51959,7 @@ /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIQ" = ( +"bIR" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/glass, /obj/item/weapon/paper_bin{ @@ -51948,7 +51968,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIR" = ( +"bIS" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 2; @@ -51960,7 +51980,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIS" = ( +"bIT" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -51969,7 +51989,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIT" = ( +"bIU" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -51978,7 +51998,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIU" = ( +"bIV" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 6 @@ -51989,7 +52009,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bIV" = ( +"bIW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -52001,14 +52021,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bIW" = ( +"bIX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/meter{ name = "Scrubbers" }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIX" = ( +"bIY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -52020,7 +52040,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bIY" = ( +"bIZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -52040,13 +52060,13 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/sleep/research) -"bIZ" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/research) "bJa" = ( /turf/simulated/wall/r_wall, -/area/rnd/telesci) +/area/crew_quarters/sleep/research) "bJb" = ( +/turf/simulated/wall/r_wall, +/area/rnd/telesci) +"bJc" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52061,7 +52081,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/telesci) -"bJc" = ( +"bJd" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52077,7 +52097,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJd" = ( +"bJe" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52092,7 +52112,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/telesci) -"bJe" = ( +"bJf" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -52103,14 +52123,14 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJf" = ( -/turf/simulated/floor/plating, -/area/rnd/misc_lab) "bJg" = ( -/obj/machinery/atmospherics/unary/freezer, /turf/simulated/floor/plating, /area/rnd/misc_lab) "bJh" = ( +/obj/machinery/atmospherics/unary/freezer, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) +"bJi" = ( /obj/machinery/atmospherics/unary/heater, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -52118,7 +52138,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJi" = ( +"bJj" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -52133,7 +52153,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bJj" = ( +"bJk" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -52150,7 +52170,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJk" = ( +"bJl" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -52160,7 +52180,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJl" = ( +"bJm" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -52168,7 +52188,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJm" = ( +"bJn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -52185,7 +52205,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJn" = ( +"bJo" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 }, @@ -52201,7 +52221,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJo" = ( +"bJp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -52211,7 +52231,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJp" = ( +"bJq" = ( /obj/structure/closet/bombcloset, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -52225,7 +52245,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bJq" = ( +"bJr" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, @@ -52240,10 +52260,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"bJr" = ( +"bJs" = ( /turf/simulated/wall, /area/crew_quarters/sleep/main) -"bJs" = ( +"bJt" = ( /obj/machinery/door/airlock{ id_tag = "Dormitory 2"; name = "Dorm" @@ -52258,7 +52278,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bJt" = ( +"bJu" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52270,10 +52290,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bJu" = ( +"bJv" = ( /turf/simulated/wall, /area/crew_quarters/locker/locker_toilet) -"bJv" = ( +"bJw" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -52287,13 +52307,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bJw" = ( +"bJx" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"bJx" = ( +"bJy" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -52301,12 +52321,12 @@ }, /turf/simulated/floor/wood, /area/library) -"bJy" = ( +"bJz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) -"bJz" = ( +"bJA" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -52318,14 +52338,14 @@ }, /turf/simulated/floor/wood, /area/library) -"bJA" = ( +"bJB" = ( /obj/structure/table/wood, /obj/item/device/camera_film, /obj/item/device/camera_film, /obj/structure/window/reinforced, /turf/simulated/floor/wood, /area/library) -"bJB" = ( +"bJC" = ( /obj/machinery/door/window/westright{ dir = 2; icon_state = "right"; @@ -52336,7 +52356,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/library) -"bJC" = ( +"bJD" = ( /obj/effect/floor_decal/corner/paleblue/full, /obj/structure/closet/secure_closet/CMO, /obj/machinery/light_switch{ @@ -52345,7 +52365,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJD" = ( +"bJE" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52358,7 +52378,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJE" = ( +"bJF" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52366,7 +52386,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJF" = ( +"bJG" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52376,7 +52396,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJG" = ( +"bJH" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52389,7 +52409,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJH" = ( +"bJI" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52398,7 +52418,7 @@ /obj/item/weapon/clipboard, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJI" = ( +"bJJ" = ( /obj/effect/floor_decal/corner/paleblue{ icon_state = "corner_white"; dir = 10 @@ -52412,9 +52432,17 @@ pixel_y = 5 }, /obj/machinery/light, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_x = 0; + pixel_y = -30 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJJ" = ( +"bJK" = ( /obj/effect/floor_decal/corner/paleblue/full{ icon_state = "corner_white_full"; dir = 4 @@ -52425,7 +52453,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) -"bJK" = ( +"bJL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -52437,21 +52465,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJL" = ( +"bJM" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJM" = ( +"bJN" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJN" = ( +"bJO" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bJO" = ( +"bJP" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -52465,21 +52493,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/research_port) "bJQ" = ( /obj/structure/cable{ d1 = 4; @@ -52492,10 +52505,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/random/loot, +/obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) "bJR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/research_port) +"bJS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -52511,10 +52539,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bJS" = ( +"bJT" = ( /turf/simulated/open, /area/turbolift/research_station) -"bJT" = ( +"bJU" = ( /obj/structure/table/standard, /obj/machinery/newscaster{ pixel_y = 32 @@ -52530,7 +52558,7 @@ /obj/item/clothing/mask/gas, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJU" = ( +"bJV" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -52540,14 +52568,14 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJV" = ( +"bJW" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJW" = ( +"bJX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -52561,7 +52589,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJX" = ( +"bJY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -52580,7 +52608,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJY" = ( +"bJZ" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d2 = 8; @@ -52604,23 +52632,23 @@ /obj/item/weapon/folder/purple, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bJZ" = ( +"bKa" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKa" = ( +"bKb" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 1 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKb" = ( +"bKc" = ( /obj/machinery/atmospherics/pipe/manifold/visible, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKc" = ( +"bKd" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -52635,7 +52663,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKd" = ( +"bKe" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52650,7 +52678,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKe" = ( +"bKf" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52661,7 +52689,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKf" = ( +"bKg" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -52676,7 +52704,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKg" = ( +"bKh" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -52692,10 +52720,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKh" = ( +"bKi" = ( /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKi" = ( +"bKj" = ( /obj/structure/closet/secure_closet/scientist, /obj/machinery/light{ dir = 4; @@ -52708,12 +52736,12 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKj" = ( +"bKk" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bKk" = ( +"bKl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -52723,7 +52751,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bKl" = ( +"bKm" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/light_switch{ @@ -52731,11 +52759,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bKm" = ( +"bKn" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bKn" = ( +"bKo" = ( /obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52747,7 +52775,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bKo" = ( +"bKp" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -52762,7 +52790,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKp" = ( +"bKq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -52772,16 +52800,16 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKq" = ( +"bKr" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKr" = ( +"bKs" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKs" = ( +"bKt" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -52790,7 +52818,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bKt" = ( +"bKu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -52800,29 +52828,29 @@ }, /turf/simulated/floor/wood, /area/library) -"bKu" = ( +"bKv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bKv" = ( +"bKw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/wood, /area/library) -"bKw" = ( +"bKx" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/library) -"bKx" = ( +"bKy" = ( /obj/structure/table/wood, /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"bKy" = ( +"bKz" = ( /obj/structure/table/wood, /obj/item/weapon/paper_bin{ pixel_x = 0; @@ -52831,31 +52859,31 @@ /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"bKz" = ( +"bKA" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bKA" = ( +"bKB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bKB" = ( +"bKC" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"bKC" = ( +"bKD" = ( /obj/machinery/librarypubliccomp, /turf/simulated/floor/wood, /area/library) -"bKD" = ( +"bKE" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -52873,7 +52901,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKE" = ( +"bKF" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -52893,7 +52921,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKF" = ( +"bKG" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -52911,7 +52939,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKG" = ( +"bKH" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -52929,17 +52957,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bKI" = ( -/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) "bKJ" = ( /obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bKK" = ( +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -52948,7 +52976,7 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKK" = ( +"bKL" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -52957,7 +52985,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKL" = ( +"bKM" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -52965,14 +52993,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bKM" = ( +"bKN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bKN" = ( +"bKO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -52984,11 +53012,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bKO" = ( +"bKP" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bKP" = ( +"bKQ" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -53008,25 +53036,25 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKQ" = ( +"bKR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKR" = ( +"bKS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKS" = ( +"bKT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKT" = ( +"bKU" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -53048,7 +53076,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bKU" = ( +"bKV" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Miscellaneous Gas Controller"; dir = 4; @@ -53061,11 +53089,11 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKV" = ( +"bKW" = ( /obj/machinery/atmospherics/valve, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bKW" = ( +"bKX" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53077,34 +53105,34 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKX" = ( +"bKY" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKY" = ( +"bKZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bKZ" = ( +"bLa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLa" = ( +"bLb" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLb" = ( +"bLc" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53112,7 +53140,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLc" = ( +"bLd" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/item/device/radio/intercom{ @@ -53129,7 +53157,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLd" = ( +"bLe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -53144,7 +53172,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bLe" = ( +"bLf" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -53152,11 +53180,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLf" = ( +"bLg" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLg" = ( +"bLh" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -53168,7 +53196,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLh" = ( +"bLi" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -53185,20 +53213,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLi" = ( +"bLj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLj" = ( +"bLk" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLk" = ( +"bLl" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -23; @@ -53206,33 +53234,33 @@ }, /turf/simulated/floor/wood, /area/library) -"bLl" = ( +"bLm" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/wood, /area/library) -"bLm" = ( +"bLn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"bLn" = ( +"bLo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"bLo" = ( +"bLp" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/carpet, /area/library) -"bLp" = ( +"bLq" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet, /area/library) -"bLq" = ( +"bLr" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53249,7 +53277,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLr" = ( +"bLs" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -53268,7 +53296,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLs" = ( +"bLt" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53293,13 +53321,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLt" = ( +"bLu" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLu" = ( +"bLv" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -53307,25 +53335,25 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLv" = ( +"bLw" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLw" = ( +"bLx" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bLx" = ( +"bLy" = ( /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bLy" = ( +"bLz" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53338,7 +53366,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bLz" = ( +"bLA" = ( /obj/machinery/button/remote/blast_door{ id = "telescience"; name = "Containment Blast Doors"; @@ -53359,7 +53387,7 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLA" = ( +"bLB" = ( /obj/effect/floor_decal/corner/mauve/diagonal, /obj/effect/floor_decal/corner/mauve/diagonal{ icon_state = "corner_white_diagonal"; @@ -53370,7 +53398,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLB" = ( +"bLC" = ( /obj/structure/table/reinforced, /obj/item/device/gps/science, /obj/item/device/gps/science, @@ -53386,16 +53414,16 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLC" = ( +"bLD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLD" = ( +"bLE" = ( /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLE" = ( +"bLF" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53403,7 +53431,7 @@ /obj/structure/closet/bombcloset, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bLF" = ( +"bLG" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -53413,13 +53441,13 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLG" = ( +"bLH" = ( /obj/machinery/atmospherics/binary/pump{ dir = 8 }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLH" = ( +"bLI" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 }, @@ -53434,7 +53462,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLI" = ( +"bLJ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -53452,7 +53480,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bLJ" = ( +"bLK" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, @@ -53463,7 +53491,7 @@ /obj/effect/floor_decal/corner/mauve/full, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLK" = ( +"bLL" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, @@ -53482,7 +53510,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLL" = ( +"bLM" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -53493,7 +53521,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLM" = ( +"bLN" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ @@ -53502,7 +53530,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLN" = ( +"bLO" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53511,7 +53539,7 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLO" = ( +"bLP" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -53519,7 +53547,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLP" = ( +"bLQ" = ( /obj/structure/closet/bombcloset, /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; @@ -53527,7 +53555,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bLQ" = ( +"bLR" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/mime, /obj/structure/cable/green{ @@ -53541,7 +53569,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/main) -"bLR" = ( +"bLS" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -53550,13 +53578,13 @@ /obj/machinery/light/small, /turf/simulated/floor/carpet, /area/crew_quarters/sleep/main) -"bLS" = ( +"bLT" = ( /obj/machinery/status_display{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLT" = ( +"bLU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -53567,10 +53595,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLU" = ( +"bLV" = ( /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bLV" = ( +"bLW" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -53579,62 +53607,62 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLW" = ( +"bLX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLX" = ( +"bLY" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bLY" = ( +"bLZ" = ( /obj/machinery/requests_console{ department = "Library"; pixel_x = -32 }, /turf/simulated/floor/wood, /area/library) -"bLZ" = ( +"bMa" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"bMa" = ( +"bMb" = ( /obj/structure/table/wood, /obj/item/weapon/tape_roll, /turf/simulated/floor/wood, /area/library) -"bMb" = ( +"bMc" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"bMc" = ( +"bMd" = ( /obj/structure/bookcase{ name = "bookcase (Religion)" }, /turf/simulated/floor/wood, /area/library) -"bMd" = ( +"bMe" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, /turf/simulated/floor/wood, /area/library) -"bMe" = ( +"bMf" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/library) -"bMf" = ( +"bMg" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /obj/structure/disposalpipe/segment{ @@ -53642,7 +53670,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bMg" = ( +"bMh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -53659,7 +53687,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bMh" = ( +"bMi" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53676,14 +53704,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bMi" = ( +"bMj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/library) -"bMj" = ( +"bMk" = ( /turf/simulated/wall, /area/maintenance/library) -"bMk" = ( +"bMl" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -53691,7 +53719,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMl" = ( +"bMm" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintance"; req_access = list(12) @@ -53699,7 +53727,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMm" = ( +"bMn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc{ dir = 8; @@ -53709,7 +53737,7 @@ /obj/structure/cable, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMn" = ( +"bMo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -53717,7 +53745,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMo" = ( +"bMp" = ( /obj/item/weapon/extinguisher, /obj/item/weapon/extinguisher{ pixel_x = 8 @@ -53725,15 +53753,7 @@ /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMp" = ( -/obj/machinery/light/small/emergency, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "bMq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) @@ -53741,10 +53761,18 @@ /obj/structure/window/reinforced{ dir = 1 }, +/obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency, /turf/simulated/floor/plating, /area/maintenance/medbay) "bMs" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/small/emergency, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"bMt" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(19) }, @@ -53758,7 +53786,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bMt" = ( +"bMu" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53771,7 +53799,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMu" = ( +"bMv" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -53779,11 +53807,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMv" = ( +"bMw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMw" = ( +"bMx" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -53791,7 +53819,7 @@ /obj/machinery/suit_storage_unit/standard_unit, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMx" = ( +"bMy" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 1 @@ -53804,7 +53832,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bMy" = ( +"bMz" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 1 @@ -53817,7 +53845,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bMz" = ( +"bMA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Autopsy Room"; @@ -53825,11 +53853,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bMA" = ( +"bMB" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/r_wall, /area/rnd/misc_lab) -"bMB" = ( +"bMC" = ( /obj/machinery/door/window/southright{ heat_proof = 1; name = "Test Chamber"; @@ -53837,7 +53865,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bMC" = ( +"bMD" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53854,16 +53882,16 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMD" = ( +"bME" = ( /turf/simulated/wall, /area/chapel/office) -"bME" = ( +"bMF" = ( /obj/machinery/newscaster{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bMF" = ( +"bMG" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -53880,32 +53908,32 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMG" = ( +"bMH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMH" = ( +"bMI" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Main Level - Restrooms"; dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bMI" = ( +"bMJ" = ( /obj/machinery/newscaster{ pixel_x = -32 }, /turf/simulated/floor/wood, /area/library) -"bMJ" = ( +"bMK" = ( /obj/structure/table/wood, /obj/item/weapon/deck/tarot, /turf/simulated/floor/wood, /area/library) -"bMK" = ( +"bML" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -53916,7 +53944,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bML" = ( +"bMM" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -53928,45 +53956,45 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/library) -"bMM" = ( +"bMN" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMN" = ( +"bMO" = ( /obj/machinery/space_heater, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMO" = ( +"bMP" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMP" = ( +"bMQ" = ( /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMQ" = ( +"bMR" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bMR" = ( +"bMS" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMS" = ( +"bMT" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb2, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bMT" = ( +"bMU" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder/up{ pixel_y = 16 @@ -53975,7 +54003,7 @@ roof_type = null }, /area/maintenance/maintcentral) -"bMU" = ( +"bMV" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small/emergency{ @@ -53987,7 +54015,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bMV" = ( +"bMW" = ( /obj/structure/table/rack{ dir = 1 }, @@ -53999,25 +54027,25 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMW" = ( +"bMX" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bMX" = ( +"bMY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMY" = ( +"bMZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bMZ" = ( +"bNa" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -54028,7 +54056,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNa" = ( +"bNb" = ( /obj/machinery/computer/operating{ name = "Robotics Operating Computer" }, @@ -54038,13 +54066,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNb" = ( +"bNc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNc" = ( +"bNd" = ( /obj/item/weapon/reagent_containers/spray/cleaner, /obj/structure/table/standard, /obj/machinery/camera/network/research{ @@ -54056,11 +54084,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNd" = ( +"bNe" = ( /obj/item/toy/figure, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bNe" = ( +"bNf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/blast/regular{ density = 0; @@ -54072,7 +54100,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bNf" = ( +"bNg" = ( /obj/item/stack/material/steel{ amount = -5; description_info = "A non-stack of non-metal. You're not sure how it exists or why it's stable."; @@ -54081,7 +54109,7 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) -"bNg" = ( +"bNh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -54097,13 +54125,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNh" = ( +"bNi" = ( /obj/structure/crematorium{ _wifi_id = "chapel_crema" }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNi" = ( +"bNj" = ( /obj/machinery/button/crematorium{ _wifi_id = "chapel_crema"; pixel_x = -32; @@ -54114,14 +54142,14 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNj" = ( +"bNk" = ( /obj/structure/morgue{ icon_state = "morgue1"; dir = 2 }, /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNk" = ( +"bNl" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -54133,44 +54161,44 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNl" = ( +"bNm" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNm" = ( +"bNn" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNn" = ( +"bNo" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNo" = ( +"bNp" = ( /obj/structure/table/wood, /obj/item/weapon/dice/d20, /obj/item/weapon/dice, /turf/simulated/floor/wood, /area/library) -"bNp" = ( +"bNq" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /turf/simulated/floor/wood, /area/library) -"bNq" = ( +"bNr" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bNr" = ( +"bNs" = ( /obj/structure/table/rack{ dir = 1 }, @@ -54182,18 +54210,18 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNs" = ( +"bNt" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNt" = ( +"bNu" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNu" = ( +"bNv" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, @@ -54210,12 +54238,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNv" = ( +"bNw" = ( /obj/structure/curtain/medical, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNw" = ( +"bNx" = ( /obj/structure/window/reinforced/tinted{ dir = 1 }, @@ -54231,22 +54259,22 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNx" = ( +"bNy" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNy" = ( +"bNz" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNz" = ( +"bNA" = ( /obj/item/stack/material/steel, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNA" = ( +"bNB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -54260,7 +54288,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/maintcentral) -"bNB" = ( +"bNC" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply{ icon_state = "up-supply"; dir = 8 @@ -54280,7 +54308,7 @@ roof_type = null }, /area/maintenance/maintcentral) -"bNC" = ( +"bND" = ( /obj/structure/closet, /obj/item/clothing/head/ushanka, /obj/machinery/light/small{ @@ -54288,12 +54316,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bND" = ( +"bNE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNE" = ( +"bNF" = ( /obj/machinery/door/airlock/maintenance{ name = "Firefighting equipment"; req_access = list(12) @@ -54301,7 +54329,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bNF" = ( +"bNG" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced, /obj/structure/window/phoronreinforced{ @@ -54335,7 +54363,7 @@ }, /turf/simulated/floor/plating, /area/rnd/telesci) -"bNG" = ( +"bNH" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 4; @@ -54349,7 +54377,7 @@ /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bNH" = ( +"bNI" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 6 @@ -54362,15 +54390,15 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bNI" = ( +"bNJ" = ( /obj/machinery/optable, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNJ" = ( +"bNK" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bNK" = ( +"bNL" = ( /obj/machinery/door/window/southright{ dir = 1; heat_proof = 1; @@ -54379,17 +54407,17 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bNL" = ( +"bNM" = ( /turf/simulated/floor/tiled/dark, /area/chapel/office) -"bNM" = ( +"bNN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNN" = ( +"bNO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -54402,7 +54430,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNO" = ( +"bNP" = ( /obj/structure/sign/directions/evac{ dir = 1; icon_state = "direction_evac"; @@ -54417,7 +54445,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bNP" = ( +"bNQ" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" }, @@ -54425,7 +54453,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bNQ" = ( +"bNR" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -54434,7 +54462,7 @@ }, /turf/simulated/floor/wood, /area/library) -"bNR" = ( +"bNS" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -54443,20 +54471,20 @@ }, /turf/simulated/floor/wood, /area/library) -"bNS" = ( +"bNT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"bNT" = ( +"bNU" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/carpet, /area/library) -"bNU" = ( +"bNV" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -54468,24 +54496,24 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/library) -"bNV" = ( +"bNW" = ( /obj/machinery/light/small/emergency, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bNW" = ( +"bNX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNX" = ( +"bNY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bNY" = ( +"bNZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/tinted{ dir = 8; @@ -54498,46 +54526,46 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bNZ" = ( +"bOa" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOa" = ( +"bOb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/machinery/iv_drip, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOb" = ( +"bOc" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOc" = ( +"bOd" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOd" = ( +"bOe" = ( /obj/machinery/atmospherics/pipe/simple/visible{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOe" = ( +"bOf" = ( /obj/item/device/t_scanner, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOf" = ( +"bOg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -54557,7 +54585,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOg" = ( +"bOh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -54575,7 +54603,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOh" = ( +"bOi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -54594,7 +54622,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOi" = ( +"bOj" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Telescience Test Chamber"; dir = 4; @@ -54602,17 +54630,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOj" = ( +"bOk" = ( /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOk" = ( +"bOl" = ( /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOl" = ( +"bOm" = ( /obj/effect/floor_decal/corner/mauve/full{ icon_state = "corner_white_full"; dir = 4 @@ -54622,7 +54650,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOm" = ( +"bOn" = ( /obj/effect/floor_decal/corner/mauve/full, /obj/machinery/alarm{ dir = 1; @@ -54631,11 +54659,11 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOn" = ( +"bOo" = ( /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOo" = ( +"bOp" = ( /obj/structure/table/standard, /obj/item/weapon/circular_saw, /obj/item/weapon/retractor, @@ -54646,21 +54674,21 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/misc_lab) -"bOp" = ( -/turf/simulated/floor/reinforced, -/area/rnd/misc_lab) "bOq" = ( -/obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) "bOr" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/reinforced, +/area/rnd/misc_lab) +"bOs" = ( /obj/machinery/air_sensor{ frequency = 1439; id_tag = "misc_res_sensor" }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bOs" = ( +"bOt" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54670,7 +54698,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOt" = ( +"bOu" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54680,7 +54708,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOu" = ( +"bOv" = ( /obj/effect/floor_decal/spline/fancy/wood{ icon_state = "spline_fancy"; dir = 1 @@ -54691,7 +54719,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bOv" = ( +"bOw" = ( /obj/machinery/power/apc{ dir = 8; name = "west bump"; @@ -54703,7 +54731,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOw" = ( +"bOx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -54719,13 +54747,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOx" = ( +"bOy" = ( /obj/item/device/radio/intercom{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bOy" = ( +"bOz" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ icon_state = "shower"; @@ -54733,14 +54761,14 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOz" = ( +"bOA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOA" = ( +"bOB" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -54753,21 +54781,21 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bOB" = ( +"bOC" = ( /turf/unsimulated/chasm_mask, /area/crew_quarters/locker/locker_toilet) -"bOC" = ( +"bOD" = ( /obj/machinery/lapvend, /turf/simulated/floor/wood, /area/library) -"bOD" = ( +"bOE" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"bOE" = ( +"bOF" = ( /obj/structure/table/wood, /obj/item/weapon/packageWrap, /obj/item/device/radio/intercom{ @@ -54783,38 +54811,38 @@ /obj/item/weapon/hand_labeler, /turf/simulated/floor/wood, /area/library) -"bOF" = ( +"bOG" = ( /obj/structure/filingcabinet, /turf/simulated/floor/wood, /area/library) -"bOG" = ( +"bOH" = ( /obj/machinery/papershredder, /turf/simulated/floor/carpet, /area/library) -"bOH" = ( +"bOI" = ( /obj/structure/bookcase{ name = "bookcase (Adult)" }, /turf/simulated/floor/wood, /area/library) -"bOI" = ( +"bOJ" = ( /obj/machinery/bookbinder{ pixel_y = 0 }, /turf/simulated/floor/wood, /area/library) -"bOJ" = ( +"bOK" = ( /obj/machinery/photocopier, /obj/machinery/light, /turf/simulated/floor/wood, /area/library) -"bOK" = ( +"bOL" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, /turf/simulated/floor/wood, /area/library) -"bOL" = ( +"bOM" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, @@ -54831,16 +54859,11 @@ }, /turf/simulated/floor/wood, /area/library) -"bOM" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/medbay) "bON" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/asteroid/ash/rocky, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/floor/tiled, /area/maintenance/medbay) "bOO" = ( /obj/structure/window/reinforced/tinted, @@ -54858,19 +54881,13 @@ /area/maintenance/medbay) "bOP" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/asteroid/ash/rocky, -/area/maintenance/medbay) -"bOQ" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/medbay) -"bOR" = ( +"bOQ" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -54884,17 +54901,17 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bOS" = ( +"bOR" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOT" = ( +"bOS" = ( /obj/machinery/telepad, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bOU" = ( +"bOT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ name = "Miscellaneous Research Room"; @@ -54902,7 +54919,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bOV" = ( +"bOU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -54914,7 +54931,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bOW" = ( +"bOV" = ( /obj/machinery/button/windowtint{ id = "chapel"; pixel_x = -6; @@ -54939,7 +54956,7 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bOX" = ( +"bOW" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp{ pixel_y = 10 @@ -54949,21 +54966,21 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bOY" = ( +"bOX" = ( /turf/simulated/floor/wood, /area/chapel/office) -"bOZ" = ( +"bOY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/chapel/office) -"bPa" = ( +"bOZ" = ( /obj/machinery/light{ dir = 4; status = 2 }, /turf/simulated/floor/wood, /area/chapel/office) -"bPb" = ( +"bPa" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -54983,21 +55000,21 @@ }, /turf/simulated/floor/plating, /area/chapel/office) -"bPc" = ( +"bPb" = ( /obj/machinery/station_map{ dir = 8; pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPd" = ( +"bPc" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bPe" = ( +"bPd" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -55012,7 +55029,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/locker/locker_toilet) -"bPf" = ( +"bPe" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -55021,7 +55038,7 @@ }, /turf/simulated/floor/plating, /area/library) -"bPg" = ( +"bPf" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -55037,7 +55054,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPh" = ( +"bPg" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -55049,7 +55066,7 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPi" = ( +"bPh" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -55062,13 +55079,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPj" = ( +"bPi" = ( /obj/random/toolbox, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPk" = ( +"bPj" = ( /obj/structure/table/standard, /obj/item/clothing/glasses/sunglasses{ pixel_x = 4; @@ -55082,7 +55099,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPl" = ( +"bPk" = ( /obj/structure/table/standard, /obj/item/clothing/ears/earmuffs{ pixel_x = 4; @@ -55091,13 +55108,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bPm" = ( +"bPl" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bPn" = ( +"bPm" = ( /obj/structure/closet/crate, /obj/item/target, /obj/item/target, @@ -55107,16 +55124,16 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPo" = ( +"bPn" = ( /obj/item/weapon/wrench, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPp" = ( +"bPo" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPq" = ( +"bPp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -55124,7 +55141,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPr" = ( +"bPq" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -55137,7 +55154,7 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bPs" = ( +"bPr" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -55145,7 +55162,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/telesci) -"bPt" = ( +"bPs" = ( /obj/machinery/light/small, /obj/effect/floor_decal/corner/mauve, /obj/effect/floor_decal/corner/mauve{ @@ -55154,16 +55171,16 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) +"bPt" = ( +/obj/effect/floor_decal/corner/mauve, +/obj/effect/floor_decal/corner/mauve{ + icon_state = "corner_white"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/rnd/telesci) "bPu" = ( /obj/effect/floor_decal/corner/mauve, -/obj/effect/floor_decal/corner/mauve{ - icon_state = "corner_white"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/telesci) -"bPv" = ( -/obj/effect/floor_decal/corner/mauve, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; dir = 1 @@ -55175,13 +55192,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"bPw" = ( +"bPv" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon{ dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bPx" = ( +"bPw" = ( /obj/machinery/atmospherics/unary/outlet_injector{ dir = 1; id = null; @@ -55189,7 +55206,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bPy" = ( +"bPx" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -55203,7 +55220,7 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bPz" = ( +"bPy" = ( /obj/structure/table/wood, /obj/item/weapon/pen, /obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, @@ -55211,13 +55228,13 @@ /obj/item/weapon/nullrod/itembox, /turf/simulated/floor/carpet, /area/chapel/office) -"bPA" = ( +"bPz" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/wood, /area/chapel/office) -"bPB" = ( +"bPA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -55226,7 +55243,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bPC" = ( +"bPB" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -55244,7 +55261,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bPD" = ( +"bPC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -55267,7 +55284,7 @@ }, /turf/simulated/floor/tiled, /area/chapel/office) -"bPE" = ( +"bPD" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -55284,7 +55301,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPF" = ( +"bPE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -55305,7 +55322,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPG" = ( +"bPF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -55314,29 +55331,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bPH" = ( +"bPG" = ( /turf/simulated/wall, /area/hallway/primary/aft) -"bPI" = ( +"bPH" = ( /turf/simulated/wall, /area/crew_quarters/kitchen) -"bPJ" = ( +"bPI" = ( /turf/simulated/floor/plating, /area/maintenance/library) -"bPK" = ( +"bPJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPL" = ( +"bPK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPM" = ( +"bPL" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -55357,7 +55374,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPN" = ( +"bPM" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55375,7 +55392,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPO" = ( +"bPN" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55392,7 +55409,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPP" = ( +"bPO" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55413,7 +55430,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPQ" = ( +"bPP" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -55431,7 +55448,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bPR" = ( +"bPQ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -55441,7 +55458,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bPS" = ( +"bPR" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ frequency = 1379; id_tag = "civilian_eva_airlock"; @@ -55473,20 +55490,20 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/maintenance/medbay) -"bPT" = ( +"bPS" = ( /obj/item/stack/tile/floor, /turf/simulated/floor/plating, /area/maintenance/research_port) +"bPT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/white, +/area/maintenance/research_port) "bPU" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) "bPV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/maintenance/research_port) -"bPW" = ( /obj/effect/floor_decal/corner/mauve, /obj/effect/floor_decal/corner/mauve{ icon_state = "corner_white"; @@ -55498,7 +55515,7 @@ }, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bPX" = ( +"bPW" = ( /obj/machinery/camera/network/research{ c_tag = "Research - Miscellaneous Testing Chamber"; dir = 1; @@ -55507,7 +55524,7 @@ /obj/machinery/light, /turf/simulated/floor/reinforced, /area/rnd/misc_lab) -"bPY" = ( +"bPX" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -55521,15 +55538,15 @@ }, /turf/simulated/floor/carpet, /area/chapel/office) -"bPZ" = ( +"bPY" = ( /obj/item/modular_computer/console/preset/civilian, /turf/simulated/floor/carpet, /area/chapel/office) -"bQa" = ( +"bPZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/chapel/office) -"bQb" = ( +"bQa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -55538,7 +55555,7 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bQc" = ( +"bQb" = ( /obj/structure/grille, /obj/machinery/door/firedoor, /obj/structure/window/reinforced/polarized{ @@ -55558,7 +55575,7 @@ }, /turf/simulated/floor/plating, /area/chapel/office) -"bQd" = ( +"bQc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -55568,7 +55585,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bQe" = ( +"bQd" = ( /obj/machinery/appliance/mixer/candy, /obj/machinery/button/remote/blast_door{ id = "kitchen"; @@ -55580,7 +55597,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQf" = ( +"bQe" = ( /obj/structure/table/stone/marble, /obj/machinery/microwave{ desc = "Vaguely smells of burnt casserole."; @@ -55589,7 +55606,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQg" = ( +"bQf" = ( /obj/structure/table/stone/marble, /obj/machinery/microwave{ desc = "Vaguely smells of burnt casserole."; @@ -55602,7 +55619,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQh" = ( +"bQg" = ( /obj/structure/table/stone/marble, /obj/machinery/reagentgrinder{ pixel_y = 4 @@ -55613,7 +55630,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQi" = ( +"bQh" = ( /obj/machinery/appliance/cooker/oven, /obj/machinery/light_switch{ pixel_x = 0; @@ -55622,7 +55639,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQj" = ( +"bQi" = ( /obj/machinery/appliance/cooker/fryer, /obj/machinery/requests_console{ department = "Kitchen"; @@ -55633,12 +55650,12 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQk" = ( +"bQj" = ( /obj/machinery/appliance/mixer/cereal, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQl" = ( +"bQk" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; freq = 1400; @@ -55650,7 +55667,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"bQm" = ( +"bQl" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/plasticflaps/airtight, @@ -55659,7 +55676,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bQn" = ( +"bQm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -55675,7 +55692,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"bQo" = ( +"bQn" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; name = "Kitchen"; @@ -55683,11 +55700,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bQp" = ( +"bQo" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/library) -"bQq" = ( +"bQp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -55698,7 +55715,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"bQr" = ( +"bQq" = ( /obj/machinery/door/airlock/external{ frequency = 1379; icon_state = "door_locked"; @@ -55709,20 +55726,20 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/maintenance/medbay) -"bQs" = ( +"bQr" = ( /obj/effect/decal/cleanable/generic, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQt" = ( +"bQs" = ( /obj/random/junk, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQu" = ( +"bQt" = ( /obj/effect/decal/cleanable/dirt, /obj/random/loot, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQv" = ( +"bQu" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -55740,7 +55757,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQw" = ( +"bQv" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55758,7 +55775,7 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQx" = ( +"bQw" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -55780,7 +55797,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQy" = ( +"bQx" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; @@ -55810,8 +55827,38 @@ }, /turf/simulated/floor/plating, /area/rnd/misc_lab) +"bQy" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "MiscBlast"; + name = "Misc Science Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "Biohazard"; + name = "Biohazard Shutter"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/rnd/misc_lab) "bQz" = ( /obj/structure/grille, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 4 + }, /obj/structure/window/phoronreinforced{ icon_state = "phoronrwindow"; dir = 1 @@ -55837,36 +55884,6 @@ /turf/simulated/floor/plating, /area/rnd/misc_lab) "bQA" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 4 - }, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow"; - dir = 1 - }, -/obj/structure/window/phoronreinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "MiscBlast"; - name = "Misc Science Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "Biohazard"; - name = "Biohazard Shutter"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"bQB" = ( /obj/machinery/door/airlock/maintenance{ name = "Chaplain Office's Maintenance"; req_one_access = list(22) @@ -55874,20 +55891,20 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/chapel/office) -"bQC" = ( +"bQB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/wood, /area/chapel/office) -"bQD" = ( +"bQC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 9 }, /turf/simulated/floor/wood, /area/chapel/office) -"bQE" = ( +"bQD" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -55896,7 +55913,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bQF" = ( +"bQE" = ( /obj/machinery/light{ dir = 1 }, @@ -55911,7 +55928,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bQG" = ( +"bQF" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/smartfridge/secure{ opacity = 1; @@ -55919,7 +55936,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bQH" = ( +"bQG" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 4; @@ -55927,14 +55944,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQI" = ( +"bQH" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQJ" = ( +"bQI" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/alarm{ dir = 8; @@ -55947,7 +55964,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bQK" = ( +"bQJ" = ( /obj/machinery/door/window/southleft{ base_state = "left"; dir = 2; @@ -55957,7 +55974,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/kitchen) -"bQL" = ( +"bQK" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/structure/window/reinforced{ dir = 8 @@ -55967,7 +55984,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bQM" = ( +"bQL" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/freezer{ @@ -55975,7 +55992,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bQN" = ( +"bQM" = ( /obj/structure/sink/kitchen{ pixel_y = 28 }, @@ -55989,7 +56006,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bQO" = ( +"bQN" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56004,57 +56021,57 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bQP" = ( +"bQO" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/library) -"bQQ" = ( +"bQP" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bQR" = ( +"bQQ" = ( /obj/structure/closet/crate, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/library) -"bQS" = ( +"bQR" = ( /obj/structure/table/reinforced/steel, /obj/machinery/recharger, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQT" = ( +"bQS" = ( /obj/structure/table/reinforced/steel, /obj/item/stack/tile/floor, /obj/random/toolbox, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bQU" = ( +"bQT" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQV" = ( +"bQU" = ( /obj/structure/table/reinforced/steel, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQW" = ( +"bQV" = ( /obj/structure/girder, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQX" = ( +"bQW" = ( /obj/machinery/light/small/emergency{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQY" = ( +"bQX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 1; @@ -56073,7 +56090,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bQZ" = ( +"bQY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 2; @@ -56097,7 +56114,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRa" = ( +"bQZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ d1 = 4; @@ -56112,7 +56129,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRb" = ( +"bRa" = ( /obj/effect/decal/cleanable/generic, /obj/structure/cable{ d1 = 4; @@ -56127,12 +56144,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRc" = ( +"bRb" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/item/weapon/storage/fancy/crayons, /turf/simulated/floor/wood, /area/chapel/office) -"bRd" = ( +"bRc" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -56144,20 +56161,20 @@ }, /turf/simulated/floor/wood, /area/chapel/office) -"bRe" = ( +"bRd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/firealarm/south, /turf/simulated/floor/wood, /area/chapel/office) -"bRf" = ( +"bRe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/chapel/office) -"bRg" = ( +"bRf" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -56171,13 +56188,13 @@ /obj/structure/cable/green, /turf/simulated/floor/wood, /area/chapel/office) -"bRh" = ( +"bRg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRi" = ( +"bRh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; @@ -56189,7 +56206,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRj" = ( +"bRi" = ( /obj/effect/floor_decal/corner/grey, /obj/effect/floor_decal/corner/white{ icon_state = "corner_white"; @@ -56197,7 +56214,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRk" = ( +"bRj" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -56208,12 +56225,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bRl" = ( +"bRk" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRm" = ( +"bRl" = ( /obj/structure/table/stone/marble, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/reagent_containers/food/condiment/peppermill{ @@ -56225,7 +56242,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRn" = ( +"bRm" = ( /obj/structure/table/stone/marble, /obj/item/weapon/reagent_containers/food/condiment/enzyme, /obj/item/weapon/reagent_containers/glass/beaker{ @@ -56234,22 +56251,22 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) +"bRn" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) "bRo" = ( +/obj/structure/table/stone/marble, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "bRp" = ( /obj/structure/table/stone/marble, /obj/effect/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"bRq" = ( -/obj/structure/table/stone/marble, -/obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/book/manual/chef_recipes, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRr" = ( +"bRq" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ dir = 1; @@ -56257,7 +56274,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRs" = ( +"bRr" = ( /obj/machinery/door/airlock/freezer{ name = "Kitchen cold room"; req_access = list(28) @@ -56275,7 +56292,7 @@ /obj/structure/plasticflaps/airtight, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bRt" = ( +"bRs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56290,7 +56307,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRu" = ( +"bRt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56302,7 +56319,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRv" = ( +"bRu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -56316,7 +56333,7 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRw" = ( +"bRv" = ( /obj/machinery/light/small{ dir = 4 }, @@ -56326,62 +56343,62 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRx" = ( +"bRw" = ( /obj/structure/barricade, /turf/simulated/floor/plating, /area/maintenance/library) -"bRy" = ( +"bRx" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"bRz" = ( +"bRy" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) +"bRz" = ( +/obj/random/loot, +/turf/simulated/floor/plating, +/area/maintenance/library) "bRA" = ( -/obj/random/loot, -/turf/simulated/floor/plating, -/area/maintenance/library) -"bRB" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRC" = ( +"bRB" = ( /obj/structure/grille, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRD" = ( +"bRC" = ( /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRE" = ( +"bRD" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRF" = ( +"bRE" = ( /obj/structure/table/rack, /obj/random/loot, /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bRG" = ( +"bRF" = ( /obj/structure/table/rack, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bRH" = ( +"bRG" = ( /obj/structure/barricade, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRI" = ( +"bRH" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bRJ" = ( +"bRI" = ( /turf/simulated/wall, /area/maintenance/cargo) -"bRK" = ( +"bRJ" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56398,10 +56415,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bRL" = ( +"bRK" = ( /turf/simulated/wall, /area/hydroponics) -"bRM" = ( +"bRL" = ( /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Maintenance"; req_access = list(35) @@ -56409,7 +56426,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bRN" = ( +"bRM" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 8 @@ -56419,14 +56436,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bRO" = ( +"bRN" = ( /obj/structure/table/stone/marble, /obj/item/weapon/material/kitchen/rollingpin, /obj/item/weapon/material/knife, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRP" = ( +"bRO" = ( /obj/structure/table/stone/marble, /obj/item/device/eftpos{ eftpos_name = "Kitchen EFTPOS scanner" @@ -56434,7 +56451,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRQ" = ( +"bRP" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 30 }, @@ -56445,7 +56462,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bRR" = ( +"bRQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light/small{ dir = 8 @@ -56459,13 +56476,13 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRS" = ( +"bRR" = ( /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRT" = ( +"bRS" = ( /obj/machinery/gibber, /obj/effect/decal/warning_stripes, /turf/simulated/floor/tiled/freezer{ @@ -56473,25 +56490,25 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bRU" = ( +"bRT" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bRV" = ( +"bRU" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRW" = ( +"bRV" = ( /obj/item/weapon/paper, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bRX" = ( +"bRW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56507,7 +56524,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bRY" = ( +"bRX" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; freq = 1400; @@ -56524,7 +56541,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bRZ" = ( +"bRY" = ( /obj/machinery/door/window/eastright{ dir = 4; icon_state = "right"; @@ -56536,7 +56553,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bSa" = ( +"bRZ" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -56545,13 +56562,13 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) +"bSa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) "bSb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bSc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -56561,7 +56578,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSd" = ( +"bSc" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Supplies"; req_access = list(35) @@ -56580,7 +56597,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSe" = ( +"bSd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -56590,7 +56607,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSf" = ( +"bSe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -56617,7 +56634,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSg" = ( +"bSf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56639,7 +56656,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSh" = ( +"bSg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56657,7 +56674,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSi" = ( +"bSh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56678,7 +56695,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSj" = ( +"bSi" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics"; req_access = list(35) @@ -56697,7 +56714,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSk" = ( +"bSj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -56715,7 +56732,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSl" = ( +"bSk" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -56734,20 +56751,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSm" = ( +"bSl" = ( /obj/structure/table/stone/marble, /obj/machinery/chemical_dispenser/bar_soft/full, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSn" = ( +"bSm" = ( /obj/structure/table/stone/marble, /obj/item/weapon/packageWrap, /obj/item/weapon/hand_labeler, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSo" = ( +"bSn" = ( /obj/structure/table/stone/marble, /obj/item/weapon/paper_bin{ pixel_x = -2; @@ -56757,7 +56774,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSp" = ( +"bSo" = ( /obj/structure/sink/kitchen{ dir = 8; icon_state = "sink_alt"; @@ -56766,21 +56783,21 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSq" = ( +"bSp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bSr" = ( +"bSq" = ( /obj/random/cookingoil, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bSs" = ( +"bSr" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56800,7 +56817,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bSt" = ( +"bSs" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -56814,17 +56831,17 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bSu" = ( +"bSt" = ( /turf/simulated/floor/wood, /area/maintenance/library) -"bSv" = ( +"bSu" = ( /obj/random/junk, /turf/simulated/floor/carpet, /area/maintenance/library) -"bSw" = ( +"bSv" = ( /turf/simulated/floor/carpet, /area/maintenance/library) -"bSx" = ( +"bSw" = ( /obj/item/clothing/mask/gas/clown_hat, /obj/item/clothing/shoes/clown_shoes, /obj/item/clothing/under/rank/clown, @@ -56837,17 +56854,17 @@ }, /turf/simulated/floor/wood, /area/maintenance/library) -"bSy" = ( +"bSx" = ( /obj/item/weapon/bedsheet/clown, /obj/structure/bed, /turf/simulated/floor/wood, /area/maintenance/library) -"bSz" = ( +"bSy" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bSA" = ( +"bSz" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -56858,26 +56875,26 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSB" = ( +"bSA" = ( /obj/structure/target_stake, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSC" = ( +"bSB" = ( /obj/structure/target_stake, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSD" = ( +"bSC" = ( /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bSE" = ( +"bSD" = ( /obj/structure/table/standard, /obj/item/weapon/folder/white, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSF" = ( +"bSE" = ( /obj/item/weapon/stool, /obj/item/weapon/paper, /obj/item/stack/tile/floor, @@ -56886,20 +56903,20 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSG" = ( +"bSF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bSH" = ( +"bSG" = ( /obj/item/stack/tile/floor, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bSI" = ( +"bSH" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -56911,7 +56928,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bSJ" = ( +"bSI" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -56919,14 +56936,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSK" = ( +"bSJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hydroponics) -"bSL" = ( +"bSK" = ( /turf/simulated/floor/tiled, /area/hydroponics) -"bSM" = ( +"bSL" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 @@ -56935,7 +56952,7 @@ /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled, /area/hydroponics) -"bSN" = ( +"bSM" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -56950,34 +56967,34 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bSO" = ( +"bSN" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSP" = ( +"bSO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/green, /turf/simulated/floor/tiled, /area/hydroponics) -"bSQ" = ( +"bSP" = ( /obj/effect/floor_decal/corner/green{ dir = 10 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSR" = ( +"bSQ" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bSS" = ( +"bSR" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics"; req_access = list(35) @@ -56985,14 +57002,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hydroponics) -"bST" = ( +"bSS" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSU" = ( +"bST" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -57004,13 +57021,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSV" = ( +"bSU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bSW" = ( +"bSV" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -57024,7 +57041,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/kitchen) -"bSX" = ( +"bSW" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/landmark/start{ name = "Chef" @@ -57032,21 +57049,21 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSY" = ( +"bSX" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bSZ" = ( +"bSY" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTa" = ( +"bSZ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -57054,19 +57071,19 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTb" = ( +"bTa" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTc" = ( +"bTb" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTd" = ( +"bTc" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/firealarm/east, /obj/effect/landmark/start{ @@ -57074,7 +57091,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTe" = ( +"bTd" = ( /obj/structure/kitchenspike, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -57084,37 +57101,37 @@ temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTf" = ( +"bTe" = ( /obj/structure/kitchenspike, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTg" = ( +"bTf" = ( /obj/structure/closet/chefcloset, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTh" = ( +"bTg" = ( /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled/freezer{ name = "freezer storage tiles"; temperature = 253.15 }, /area/crew_quarters/kitchen) -"bTi" = ( +"bTh" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/library) -"bTj" = ( +"bTi" = ( /obj/machinery/door/airlock/maintenance, /obj/machinery/door/firedoor, /turf/simulated/floor/wood, /area/maintenance/library) -"bTk" = ( +"bTj" = ( /obj/structure/closet{ icon_closed = "cabinet_closed"; icon_opened = "cabinet_open"; @@ -57123,11 +57140,11 @@ /obj/effect/landmark/costume/imperium_monk, /turf/simulated/floor/wood, /area/maintenance/library) -"bTl" = ( +"bTk" = ( /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bTm" = ( +"bTl" = ( /obj/structure/table/standard, /obj/machinery/button/remote/airlock{ id = "maint_dungeon"; @@ -57148,13 +57165,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/white, /area/maintenance/research_port) -"bTn" = ( +"bTm" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTo" = ( +"bTn" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -57172,15 +57189,15 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTp" = ( +"bTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hydroponics) -"bTq" = ( +"bTp" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hydroponics) -"bTr" = ( +"bTq" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; @@ -57190,7 +57207,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hydroponics) -"bTs" = ( +"bTr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -57200,17 +57217,17 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTt" = ( +"bTs" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTu" = ( +"bTt" = ( /obj/machinery/light, /obj/structure/reagent_dispensers/watertank, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTv" = ( +"bTu" = ( /obj/item/device/eftpos{ eftpos_name = "Hydroponics EFTPOS scanner" }, @@ -57219,11 +57236,11 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTw" = ( +"bTv" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bTx" = ( +"bTw" = ( /obj/machinery/door/firedoor, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -57239,14 +57256,14 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"bTy" = ( +"bTx" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bTz" = ( +"bTy" = ( /obj/machinery/light, /obj/machinery/camera/network/civilian_west{ c_tag = "Aft Corridor - Camera 2"; @@ -57263,7 +57280,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bTA" = ( +"bTz" = ( /obj/machinery/disposal{ name = "disposal unit" }, @@ -57273,12 +57290,12 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTB" = ( +"bTA" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTC" = ( +"bTB" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; pixel_x = -5 @@ -57287,7 +57304,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTD" = ( +"bTC" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -57295,7 +57312,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTE" = ( +"bTD" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -57308,7 +57325,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTF" = ( +"bTE" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -57321,14 +57338,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bTG" = ( +"bTF" = ( /obj/machinery/button/windowtint{ id = "theatre"; pixel_y = -26 }, /turf/simulated/floor/plating, /area/maintenance/library) -"bTH" = ( +"bTG" = ( /obj/item/clothing/head/soft/mime, /obj/item/clothing/mask/gas/mime, /obj/item/clothing/shoes/mime, @@ -57341,20 +57358,20 @@ }, /turf/simulated/floor/wood, /area/maintenance/library) -"bTI" = ( +"bTH" = ( /obj/effect/landmark/costume/pirate, /turf/simulated/floor/wood, /area/maintenance/library) -"bTJ" = ( +"bTI" = ( /obj/random/junk, /turf/simulated/floor/wood, /area/maintenance/library) -"bTK" = ( +"bTJ" = ( /obj/item/weapon/bedsheet/mime, /obj/structure/bed, /turf/simulated/floor/wood, /area/maintenance/library) -"bTL" = ( +"bTK" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "maint_cell" @@ -57374,7 +57391,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTM" = ( +"bTL" = ( /obj/machinery/door/airlock/research{ icon_state = "door_locked"; id_tag = "maint_dungeon"; @@ -57384,7 +57401,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTN" = ( +"bTM" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized{ id = "maint_cell" @@ -57405,11 +57422,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bTO" = ( +"bTN" = ( /obj/structure/closet/secure_closet/hydroponics, /turf/simulated/floor/tiled, /area/hydroponics) -"bTP" = ( +"bTO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -57418,14 +57435,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTQ" = ( +"bTP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hydroponics) -"bTR" = ( +"bTQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -57438,7 +57455,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTS" = ( +"bTR" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Supplies"; req_access = list(35) @@ -57460,7 +57477,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTT" = ( +"bTS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -57473,7 +57490,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTU" = ( +"bTT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -57491,7 +57508,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bTV" = ( +"bTU" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -57503,16 +57520,16 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/hydroponics) +"bTV" = ( +/obj/structure/window/reinforced{ + icon_state = "rwindow"; + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/hydroponics) "bTW" = ( -/obj/structure/window/reinforced{ - icon_state = "rwindow"; - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/hydroponics) -"bTX" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -57524,7 +57541,7 @@ /obj/structure/grille, /turf/simulated/floor/plating, /area/hydroponics) -"bTY" = ( +"bTX" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -57535,7 +57552,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bTZ" = ( +"bTY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -57550,7 +57567,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bUa" = ( +"bTZ" = ( /obj/machinery/door/airlock/glass{ name = "Kitchen"; req_access = list(28) @@ -57559,7 +57576,7 @@ /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bUb" = ( +"bUa" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -57571,28 +57588,28 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) +"bUb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/kitchen) "bUc" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/kitchen) -"bUd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bUe" = ( +"bUd" = ( /obj/machinery/door/airlock/glass{ name = "Kitchen"; req_access = list(28) @@ -57608,7 +57625,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"bUf" = ( +"bUe" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -57624,7 +57641,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"bUg" = ( +"bUf" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -57637,40 +57654,40 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) +"bUg" = ( +/obj/structure/window/reinforced/polarized{ + id = "theatre" + }, +/turf/simulated/floor/wood, +/area/maintenance/library) "bUh" = ( -/obj/structure/window/reinforced/polarized{ - id = "theatre" - }, -/turf/simulated/floor/wood, -/area/maintenance/library) -"bUi" = ( /obj/structure/window/reinforced/polarized{ id = "theatre" }, /turf/simulated/floor/plating, /area/maintenance/library) -"bUj" = ( +"bUi" = ( /obj/effect/landmark/costume/gladiator, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bUk" = ( +"bUj" = ( /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bUl" = ( +"bUk" = ( /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUm" = ( +"bUl" = ( /obj/random/junk, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bUn" = ( +"bUm" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUo" = ( +"bUn" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/cobweb2{ icon_state = "cobweb1" @@ -57678,7 +57695,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUp" = ( +"bUo" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -57686,7 +57703,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUq" = ( +"bUp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -57702,7 +57719,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUr" = ( +"bUq" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Pasture"; req_access = list(35) @@ -57712,7 +57729,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hydroponics) -"bUs" = ( +"bUr" = ( /obj/structure/grille, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -57725,7 +57742,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUt" = ( +"bUs" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -57738,7 +57755,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUu" = ( +"bUt" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 9 @@ -57757,14 +57774,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUv" = ( +"bUu" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bUw" = ( +"bUv" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -57773,7 +57790,7 @@ /obj/structure/flora/ausbushes/fernybush, /turf/simulated/floor/grass, /area/hydroponics) -"bUx" = ( +"bUw" = ( /obj/structure/window/reinforced{ icon_state = "rwindow"; dir = 1 @@ -57788,31 +57805,31 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUy" = ( +"bUx" = ( /obj/machinery/status_display{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bUz" = ( +"bUy" = ( /turf/simulated/wall, /area/crew_quarters/bar) -"bUA" = ( +"bUz" = ( /obj/machinery/vending/dinnerware, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUB" = ( +"bUA" = ( /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUC" = ( +"bUB" = ( /obj/structure/table/stone/marble, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUD" = ( +"bUC" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUE" = ( +"bUD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -57822,36 +57839,36 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUF" = ( +"bUE" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUG" = ( +"bUF" = ( /obj/structure/device/piano, /turf/simulated/floor/wood, /area/maintenance/library) -"bUH" = ( +"bUG" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/plating, /area/maintenance/library) -"bUI" = ( +"bUH" = ( /obj/effect/landmark/costume/chicken, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bUJ" = ( +"bUI" = ( /obj/item/weapon/stool, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUK" = ( +"bUJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/xeno, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUL" = ( +"bUK" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -57863,26 +57880,26 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bUM" = ( +"bUL" = ( /obj/structure/flora/ausbushes/brflowers, /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/hydroponics) -"bUN" = ( +"bUM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/grass, /area/hydroponics) -"bUO" = ( +"bUN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bUP" = ( +"bUO" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/light{ dir = 4; @@ -57890,7 +57907,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics) -"bUQ" = ( +"bUP" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -57904,7 +57921,7 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"bUR" = ( +"bUQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -57916,7 +57933,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUS" = ( +"bUR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -57926,7 +57943,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUT" = ( +"bUS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -57936,14 +57953,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUU" = ( +"bUT" = ( /obj/effect/floor_decal/corner/green/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bUV" = ( +"bUU" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -57954,7 +57971,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bUW" = ( +"bUV" = ( /obj/structure/table/stone/marble, /obj/machinery/alarm{ dir = 4; @@ -57963,12 +57980,12 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUX" = ( +"bUW" = ( /obj/structure/table/stone/marble, /obj/item/clothing/head/cakehat, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bUY" = ( +"bUX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 6 @@ -57983,7 +58000,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bUZ" = ( +"bUY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -57998,10 +58015,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVa" = ( +"bUZ" = ( /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVb" = ( +"bVa" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -58016,46 +58033,46 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVc" = ( +"bVb" = ( /obj/machinery/floor_light/dance, /turf/simulated/floor/light, /area/crew_quarters/bar) -"bVd" = ( +"bVc" = ( /obj/machinery/floor_light/dance/alternate, /turf/simulated/floor/light, /area/crew_quarters/bar) -"bVe" = ( +"bVd" = ( /obj/structure/table/rack, /turf/simulated/floor/plating, /area/maintenance/library) -"bVf" = ( +"bVe" = ( /obj/structure/flora/pottedplant/random, /turf/simulated/floor/wood, /area/maintenance/library) -"bVg" = ( +"bVf" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/carpet, /area/maintenance/library) -"bVh" = ( +"bVg" = ( /obj/effect/landmark/costume/commie, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bVi" = ( +"bVh" = ( /obj/structure/toilet{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bVj" = ( +"bVi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark{ name = "blobstart" }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bVk" = ( +"bVj" = ( /obj/structure/bed, /obj/effect/decal/cleanable/cobweb2{ icon_state = "spiderling"; @@ -58064,20 +58081,20 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bVl" = ( +"bVk" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/hydroponics) -"bVm" = ( +"bVl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/grass, /area/hydroponics) -"bVn" = ( +"bVm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/grass, /area/hydroponics) -"bVo" = ( +"bVn" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -58088,12 +58105,12 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/hydroponics) -"bVp" = ( +"bVo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hydroponics) -"bVq" = ( +"bVp" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -58101,7 +58118,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hydroponics) -"bVr" = ( +"bVq" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -58110,7 +58127,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"bVs" = ( +"bVr" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -58118,14 +58135,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hydroponics) -"bVt" = ( +"bVs" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/hydroponics) -"bVu" = ( +"bVt" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light{ dir = 4; @@ -58134,7 +58151,7 @@ }, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bVv" = ( +"bVu" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -58142,14 +58159,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bVw" = ( +"bVv" = ( /obj/structure/sign/double/barsign{ icon_state = "empty"; dir = 8 }, /turf/simulated/wall, /area/crew_quarters/bar) -"bVx" = ( +"bVw" = ( /obj/item/weapon/stool/padded, /obj/machinery/light{ dir = 8; @@ -58163,11 +58180,11 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVy" = ( +"bVx" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVz" = ( +"bVy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; @@ -58180,17 +58197,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVA" = ( +"bVz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVB" = ( +"bVA" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVC" = ( +"bVB" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Dance Floor"; dir = 8 @@ -58198,35 +58215,35 @@ /obj/machinery/floor_light/dance/alternate, /turf/simulated/floor/light, /area/crew_quarters/bar) -"bVD" = ( +"bVC" = ( /obj/effect/landmark/costume/plaguedoctor, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bVE" = ( +"bVD" = ( /obj/effect/landmark/costume/elpresidente, /obj/structure/table/rack, /turf/simulated/floor/wood, /area/maintenance/library) -"bVF" = ( +"bVE" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/research_port) -"bVG" = ( +"bVF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bVH" = ( +"bVG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/grass, /area/hydroponics) -"bVI" = ( +"bVH" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bVJ" = ( +"bVI" = ( /obj/machinery/door/airlock/glass{ name = "Hydroponics Pasture"; req_access = list(35) @@ -58234,14 +58251,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hydroponics) -"bVK" = ( +"bVJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hydroponics) -"bVL" = ( +"bVK" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -58250,14 +58267,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/hydroponics) -"bVM" = ( +"bVL" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/landmark/start{ name = "Gardener" }, /turf/simulated/floor/tiled, /area/hydroponics) -"bVN" = ( +"bVM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, @@ -58265,27 +58282,27 @@ /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled, /area/hydroponics) -"bVO" = ( +"bVN" = ( /obj/machinery/door/airlock/glass{ name = "Diner" }, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/bar) -"bVP" = ( +"bVO" = ( /turf/simulated/floor/tiled/ramp/bottom{ icon_state = "rampbot"; dir = 4 }, /area/crew_quarters/bar) -"bVQ" = ( +"bVP" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bVR" = ( +"bVQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Maintenance Access"; @@ -58293,7 +58310,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bVS" = ( +"bVR" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -58311,24 +58328,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) +"bVS" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/cargo) "bVT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/cargo) -"bVU" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -58346,7 +58363,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bVV" = ( +"bVU" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -58364,7 +58381,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bVW" = ( +"bVV" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/machinery/light{ dir = 8; @@ -58373,13 +58390,13 @@ }, /turf/simulated/floor/grass, /area/hydroponics) -"bVX" = ( +"bVW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/grass, /area/hydroponics) -"bVY" = ( +"bVX" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Hydroponics - Animal Pen"; dir = 1 @@ -58389,7 +58406,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics) -"bVZ" = ( +"bVY" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -58403,19 +58420,19 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"bWa" = ( +"bVZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/green, /turf/simulated/floor/tiled, /area/hydroponics) +"bWa" = ( +/obj/effect/floor_decal/corner/green{ + icon_state = "corner_white"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) "bWb" = ( -/obj/effect/floor_decal/corner/green{ - icon_state = "corner_white"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bWc" = ( /obj/effect/floor_decal/corner/green{ icon_state = "corner_white"; dir = 10 @@ -58423,7 +58440,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/hydroponics) -"bWd" = ( +"bWc" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -58442,7 +58459,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWe" = ( +"bWd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58461,7 +58478,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWf" = ( +"bWe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58479,7 +58496,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/bar) -"bWg" = ( +"bWf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58496,7 +58513,7 @@ dir = 4 }, /area/crew_quarters/bar) -"bWh" = ( +"bWg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -58510,7 +58527,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWi" = ( +"bWh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -58529,7 +58546,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWj" = ( +"bWi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -58541,13 +58558,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWk" = ( +"bWj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWl" = ( +"bWk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -58559,10 +58576,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWm" = ( +"bWl" = ( /turf/simulated/wall, /area/quartermaster/office) -"bWn" = ( +"bWm" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -58577,7 +58594,7 @@ /obj/effect/floor_decal/corner/green/full, /turf/simulated/floor/tiled, /area/hydroponics) -"bWo" = ( +"bWn" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -58589,12 +58606,12 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/hydroponics) -"bWp" = ( +"bWo" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/hydroponics) -"bWq" = ( +"bWp" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -58605,7 +58622,7 @@ /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, /area/hydroponics) -"bWr" = ( +"bWq" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 8 @@ -58617,14 +58634,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"bWs" = ( +"bWr" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Aft Corridor - Camera 1"; dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWt" = ( +"bWs" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -58637,7 +58654,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bWu" = ( +"bWt" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced{ @@ -58650,16 +58667,16 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bWv" = ( +"bWu" = ( /obj/structure/bed/chair/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWw" = ( +"bWv" = ( /obj/item/weapon/stool/padded, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWx" = ( +"bWw" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -58672,7 +58689,11 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWy" = ( +"bWx" = ( +/obj/machinery/light_switch{ + pixel_x = 4; + pixel_y = 26 + }, /obj/machinery/button/remote/blast_door{ id = "bar"; name = "Bar Shutters"; @@ -58681,10 +58702,6 @@ /obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Counter" }, -/obj/machinery/light_switch{ - pixel_x = 4; - pixel_y = 26 - }, /obj/machinery/button/windowtint{ id = "finedining"; pixel_x = -4; @@ -58692,15 +58709,15 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWz" = ( +"bWy" = ( /obj/machinery/smartfridge/drinks, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWA" = ( +"bWz" = ( /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/library) -"bWB" = ( +"bWA" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -58719,7 +58736,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"bWC" = ( +"bWB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -58738,7 +58755,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bWD" = ( +"bWC" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -58759,7 +58776,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"bWE" = ( +"bWD" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -58777,16 +58794,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bWF" = ( +"bWE" = ( /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWG" = ( +"bWF" = ( /obj/machinery/status_display/supply_display{ pixel_y = 32 }, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWH" = ( +"bWG" = ( /obj/machinery/autolathe, /obj/machinery/light{ icon_state = "tube1"; @@ -58794,7 +58811,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWI" = ( +"bWH" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/machinery/status_display/supply_display{ @@ -58802,7 +58819,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWJ" = ( +"bWI" = ( /obj/machinery/newscaster{ pixel_x = -32 }, @@ -58811,20 +58828,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bWK" = ( +"bWJ" = ( /obj/structure/table/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWL" = ( +"bWK" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWM" = ( +"bWL" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bWN" = ( +"bWM" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -58835,7 +58852,7 @@ /obj/item/weapon/reagent_containers/glass/rag, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWO" = ( +"bWN" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/bar_soft/full, /obj/machinery/light{ @@ -58845,7 +58862,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bWP" = ( +"bWO" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=2"; freq = 1400; @@ -58859,7 +58876,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/bar) -"bWQ" = ( +"bWP" = ( /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; req_access = list(25) @@ -58868,7 +58885,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bWR" = ( +"bWQ" = ( /obj/machinery/light/small/emergency{ icon_state = "bulb1"; dir = 4 @@ -58877,34 +58894,34 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bWS" = ( +"bWR" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bWT" = ( +"bWS" = ( /obj/effect/large_stock_marker, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWU" = ( +"bWT" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bWV" = ( +"bWU" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWW" = ( +"bWV" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWX" = ( +"bWW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/ringer{ department = "Cargo"; @@ -58915,11 +58932,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWY" = ( +"bWX" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bWZ" = ( +"bWY" = ( /obj/item/weapon/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -58936,7 +58953,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXa" = ( +"bWZ" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -58948,13 +58965,13 @@ /obj/item/modular_computer/console/preset/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXb" = ( +"bXa" = ( /obj/machinery/atm{ pixel_y = 32 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXc" = ( +"bXb" = ( /obj/machinery/alarm{ pixel_y = 23 }, @@ -58964,14 +58981,14 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXd" = ( +"bXc" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/machinery/firealarm/north, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXe" = ( +"bXd" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -58988,14 +59005,14 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"bXf" = ( +"bXe" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXg" = ( +"bXf" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -59005,12 +59022,12 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXh" = ( +"bXg" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/bar_alc/full, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXi" = ( +"bXh" = ( /obj/machinery/disposal, /obj/structure/shotgun_rack/double{ pixel_x = 0; @@ -59019,7 +59036,7 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXj" = ( +"bXi" = ( /obj/machinery/door/window/southleft{ base_state = "left"; dir = 2; @@ -59029,7 +59046,7 @@ }, /turf/simulated/floor/tiled/dark, /area/crew_quarters/bar) -"bXk" = ( +"bXj" = ( /obj/structure/closet/secure_closet/bar{ req_access = list(25) }, @@ -59038,7 +59055,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXl" = ( +"bXk" = ( /obj/structure/closet/gmcloset{ icon_closed = "black"; icon_state = "black"; @@ -59050,7 +59067,7 @@ /obj/item/glass_jar, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXm" = ( +"bXl" = ( /obj/structure/table/wood, /obj/item/weapon/storage/box/beanbags, /obj/item/weapon/paper{ @@ -59059,27 +59076,27 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXn" = ( +"bXm" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXo" = ( +"bXn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXp" = ( +"bXo" = ( /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXq" = ( +"bXp" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXr" = ( +"bXq" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -59101,15 +59118,15 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXs" = ( +"bXr" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXt" = ( +"bXs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXu" = ( +"bXt" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -59120,7 +59137,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXv" = ( +"bXu" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -59135,18 +59152,18 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"bXw" = ( +"bXv" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXx" = ( +"bXw" = ( /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXy" = ( +"bXx" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -59157,7 +59174,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXz" = ( +"bXy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -59171,7 +59188,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXA" = ( +"bXz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59180,7 +59197,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXB" = ( +"bXA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -59189,7 +59206,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXC" = ( +"bXB" = ( /obj/item/weapon/stool/padded, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -59200,7 +59217,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXD" = ( +"bXC" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -59216,7 +59233,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXE" = ( +"bXD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59225,7 +59242,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXF" = ( +"bXE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59238,7 +59255,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bXG" = ( +"bXF" = ( /obj/machinery/door/airlock{ name = "Bar Backroom"; req_access = list(25) @@ -59255,7 +59272,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/crew_quarters/bar) -"bXH" = ( +"bXG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59267,7 +59284,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXI" = ( +"bXH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59279,7 +59296,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXJ" = ( +"bXI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -59288,14 +59305,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXK" = ( +"bXJ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXL" = ( +"bXK" = ( /obj/structure/table/wood, /obj/machinery/reagentgrinder, /obj/item/weapon/reagent_containers/food/drinks/shaker, @@ -59311,7 +59328,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXM" = ( +"bXL" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -59329,7 +59346,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) -"bXN" = ( +"bXM" = ( /obj/item/weapon/stamp{ pixel_x = -3; pixel_y = 3 @@ -59341,11 +59358,11 @@ /obj/structure/table/standard, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXO" = ( +"bXN" = ( /obj/item/modular_computer/console/preset/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXP" = ( +"bXO" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -59359,11 +59376,11 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/office) -"bXQ" = ( +"bXP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXR" = ( +"bXQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -59377,7 +59394,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXS" = ( +"bXR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -59389,7 +59406,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXT" = ( +"bXS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59403,7 +59420,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXU" = ( +"bXT" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -59421,7 +59438,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bXV" = ( +"bXU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -59439,7 +59456,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXW" = ( +"bXV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -59454,7 +59471,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXX" = ( +"bXW" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -59465,7 +59482,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bXY" = ( +"bXX" = ( /obj/structure/table/wood, /obj/item/weapon/material/kitchen/utensil/fork{ pixel_x = 8 @@ -59482,7 +59499,7 @@ /obj/item/weapon/material/kitchen/utensil/fork, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bXZ" = ( +"bXY" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -59493,11 +59510,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYa" = ( +"bXZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYb" = ( +"bYa" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Bar"; @@ -59514,7 +59531,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYc" = ( +"bYb" = ( /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"; @@ -59525,26 +59542,26 @@ /obj/structure/reagent_dispensers/beerkeg, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYd" = ( +"bYc" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYe" = ( +"bYd" = ( /mob/living/carbon/human/monkey/punpun, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYf" = ( +"bYe" = ( /obj/effect/landmark/start{ name = "Bartender" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYg" = ( +"bYf" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYh" = ( +"bYg" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -59557,7 +59574,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"bYi" = ( +"bYh" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -59568,14 +59585,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bYj" = ( +"bYi" = ( /turf/simulated/wall, /area/maintenance/substation/civilian_west) -"bYk" = ( +"bYj" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bYl" = ( +"bYk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -59585,29 +59602,29 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYm" = ( +"bYl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYn" = ( +"bYm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYo" = ( +"bYn" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYp" = ( +"bYo" = ( /obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYq" = ( +"bYp" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -59619,7 +59636,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/office) -"bYr" = ( +"bYq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -59629,28 +59646,28 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYs" = ( +"bYr" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYt" = ( +"bYs" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYu" = ( +"bYt" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CC2"; location = "Civ" }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYv" = ( +"bYu" = ( /obj/structure/table/wood, /obj/item/weapon/material/kitchen/utensil/knife/plastic{ pixel_x = -8 @@ -59667,7 +59684,7 @@ /obj/item/weapon/material/kitchen/utensil/knife/plastic, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYw" = ( +"bYv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -59675,23 +59692,23 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYx" = ( +"bYw" = ( /obj/machinery/vending/boozeomat, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYy" = ( +"bYx" = ( /obj/structure/sign/poster{ pixel_x = 0; pixel_y = 0 }, /turf/simulated/wall, /area/crew_quarters/bar) -"bYz" = ( +"bYy" = ( /obj/structure/table/wood, /obj/item/weapon/flame/lighter/zippo, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYA" = ( +"bYz" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 8 @@ -59701,20 +59718,20 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYB" = ( +"bYA" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYC" = ( +"bYB" = ( /obj/item/weapon/bedsheet/brown, /obj/structure/bed, /obj/machinery/firealarm/east, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYD" = ( +"bYC" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -59730,7 +59747,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"bYE" = ( +"bYD" = ( /obj/machinery/door/airlock/engineering{ name = "Civilian West Substation"; req_one_access = list(11,24) @@ -59744,7 +59761,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYF" = ( +"bYE" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -59761,17 +59778,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYG" = ( +"bYF" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "\[F.3] Civilian Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYH" = ( +"bYG" = ( /obj/turbolift_map_holder/aurora/cargo, /turf/simulated/floor/tiled/dark, /area/turbolift/cargo_station) -"bYI" = ( +"bYH" = ( /obj/item/weapon/folder/yellow, /obj/item/device/eftpos{ eftpos_name = "Cargo Bay EFTPOS scanner" @@ -59793,7 +59810,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYJ" = ( +"bYI" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -59807,7 +59824,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYK" = ( +"bYJ" = ( /obj/machinery/door/firedoor{ dir = 4; name = "Firelock East" @@ -59830,7 +59847,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYL" = ( +"bYK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -59846,26 +59863,26 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYM" = ( +"bYL" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYN" = ( +"bYM" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYO" = ( +"bYN" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 32 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bYP" = ( +"bYO" = ( /obj/structure/window/reinforced/polarized{ id = "dancedance" }, @@ -59885,7 +59902,7 @@ /obj/item/weapon/material/kitchen/utensil/spoon, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bYQ" = ( +"bYP" = ( /obj/structure/table/reinforced, /obj/machinery/door/blast/shutters{ dir = 8; @@ -59898,7 +59915,7 @@ /obj/item/weapon/paper_bin, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYR" = ( +"bYQ" = ( /obj/machinery/door/window{ dir = 2; name = "Bar"; @@ -59906,13 +59923,13 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYS" = ( +"bYR" = ( /obj/structure/window/reinforced/polarized{ id = "finedining" }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYT" = ( +"bYS" = ( /obj/structure/table/reinforced, /obj/item/weapon/book/manual/barman_recipes, /obj/item/clothing/head/that{ @@ -59931,7 +59948,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"bYU" = ( +"bYT" = ( /obj/machinery/power/terminal{ dir = 4 }, @@ -59945,7 +59962,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYV" = ( +"bYU" = ( /obj/machinery/power/smes/buildable{ charge = 0; RCon_tag = "Substation - \[F.3] Civilian" @@ -59957,7 +59974,7 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bYW" = ( +"bYV" = ( /obj/item/weapon/storage/belt/utility, /obj/structure/table/standard{ name = "plastic table frame" @@ -59982,11 +59999,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYX" = ( +"bYW" = ( /obj/machinery/papershredder, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bYY" = ( +"bYX" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -60001,7 +60018,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/quartermaster/office) -"bYZ" = ( +"bYY" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -32 }, @@ -60010,14 +60027,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZa" = ( +"bYZ" = ( /obj/machinery/status_display{ pixel_x = 0; pixel_y = -32 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZb" = ( +"bZa" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -60027,18 +60044,18 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZc" = ( +"bZb" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bZd" = ( +"bZc" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) -"bZe" = ( +"bZd" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /obj/structure/cable/green{ @@ -60052,7 +60069,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZf" = ( +"bZe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -60060,7 +60077,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZg" = ( +"bZf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -60068,7 +60085,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZh" = ( +"bZg" = ( /obj/structure/bed/chair/comfy/black, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -60076,18 +60093,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZi" = ( +"bZh" = ( /obj/structure/bed/chair/comfy/black, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZj" = ( +"bZi" = ( /obj/machinery/vending/cigarette, /obj/machinery/camera/network/civilian_west{ c_tag = "Bar - Smoking Lounge" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZk" = ( +"bZj" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -60099,7 +60116,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZl" = ( +"bZk" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -60110,7 +60127,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZm" = ( +"bZl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60130,7 +60147,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZn" = ( +"bZm" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60142,7 +60159,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bZo" = ( +"bZn" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Civilian (Main Level)"; name_tag = "Civilian (Main Level) Subgrid" @@ -60158,7 +60175,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian_west) -"bZp" = ( +"bZo" = ( /obj/machinery/newscaster{ pixel_x = -27; pixel_y = 1 @@ -60174,7 +60191,7 @@ /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZq" = ( +"bZp" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -60188,7 +60205,7 @@ /obj/machinery/firealarm/east, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZr" = ( +"bZq" = ( /obj/structure/disposalpipe/trunk, /obj/machinery/door/window/westleft{ dir = 1; @@ -60200,7 +60217,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZs" = ( +"bZr" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -60215,31 +60232,31 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hallway/primary/aft) -"bZt" = ( +"bZs" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZu" = ( +"bZt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZv" = ( +"bZu" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZw" = ( +"bZv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZx" = ( +"bZw" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; @@ -60250,7 +60267,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"bZy" = ( +"bZx" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60263,15 +60280,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZz" = ( +"bZy" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/library) -"bZA" = ( +"bZz" = ( /turf/simulated/wall, /area/quartermaster/storage) -"bZB" = ( +"bZA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -60284,7 +60301,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"bZC" = ( +"bZB" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60297,7 +60314,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZD" = ( +"bZC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -60312,7 +60329,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZE" = ( +"bZD" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/window/reinforced{ dir = 8 @@ -60328,7 +60345,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZF" = ( +"bZE" = ( /obj/structure/disposaloutlet{ dir = 8 }, @@ -60342,7 +60359,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"bZG" = ( +"bZF" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -60362,14 +60379,14 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"bZH" = ( +"bZG" = ( /obj/structure/cryofeed{ icon_state = "cryo_rear"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZI" = ( +"bZH" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 @@ -60381,10 +60398,10 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZJ" = ( +"bZI" = ( /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZK" = ( +"bZJ" = ( /obj/machinery/cryopod, /obj/machinery/light{ dir = 1; @@ -60393,11 +60410,11 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZL" = ( +"bZK" = ( /obj/structure/cryofeed, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"bZM" = ( +"bZL" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -60406,11 +60423,11 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZN" = ( +"bZM" = ( /obj/structure/table/wood, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZO" = ( +"bZN" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, @@ -60419,7 +60436,7 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"bZP" = ( +"bZO" = ( /obj/machinery/vending/snack, /obj/structure/window/reinforced{ dir = 8 @@ -60431,7 +60448,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZQ" = ( +"bZP" = ( /obj/machinery/computer/arcade, /obj/structure/window/reinforced{ icon_state = "rwindow"; @@ -60439,19 +60456,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZR" = ( +"bZQ" = ( /obj/machinery/atm{ pixel_y = -32 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZS" = ( +"bZR" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZT" = ( +"bZS" = ( /obj/structure/table/wood, /obj/item/weapon/flame/candle, /obj/machinery/newscaster{ @@ -60460,13 +60477,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZU" = ( +"bZT" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"bZV" = ( +"bZU" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -60474,13 +60491,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"bZW" = ( +"bZV" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/cobweb, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"bZX" = ( +"bZW" = ( /obj/structure/closet/crate/medical, /obj/structure/cable/green{ d1 = 1; @@ -60490,7 +60507,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"bZY" = ( +"bZX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/standard, /obj/machinery/ringer{ @@ -60502,25 +60519,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) +"bZY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "bZZ" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/standard, /turf/simulated/floor/tiled, /area/quartermaster/storage) "caa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/table/standard, /turf/simulated/floor/tiled, /area/quartermaster/storage) "cab" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cac" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -60529,7 +60546,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cad" = ( +"cac" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 @@ -60539,7 +60556,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cae" = ( +"cad" = ( /obj/machinery/light/small{ dir = 4 }, @@ -60550,7 +60567,7 @@ /obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caf" = ( +"cae" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -60560,14 +60577,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cag" = ( +"caf" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cah" = ( +"cag" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; freq = 1400; @@ -60581,18 +60598,18 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cai" = ( +"cah" = ( /obj/machinery/cryopod{ icon_state = "body_scanner_0"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"caj" = ( +"cai" = ( /obj/machinery/cryopod, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"cak" = ( +"caj" = ( /obj/structure/table/wood, /obj/machinery/light/small, /obj/machinery/camera/network/civilian_west{ @@ -60601,12 +60618,12 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"cal" = ( +"cak" = ( /obj/structure/table/wood, /obj/machinery/light/small, /turf/simulated/floor/carpet, /area/crew_quarters/bar) -"cam" = ( +"cal" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -60618,7 +60635,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"can" = ( +"cam" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -60631,7 +60648,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cao" = ( +"can" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -60642,7 +60659,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cap" = ( +"cao" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 4; @@ -60657,7 +60674,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caq" = ( +"cap" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -60671,7 +60688,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"car" = ( +"caq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60685,7 +60702,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cas" = ( +"car" = ( /obj/machinery/door/blast/shutters{ dir = 2; id = "qm_warehouse"; @@ -60705,7 +60722,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cat" = ( +"cas" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60723,7 +60740,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cau" = ( +"cat" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60741,7 +60758,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cav" = ( +"cau" = ( /obj/machinery/door/airlock/glass_mining{ name = "Equipment storage"; req_access = list(31) @@ -60760,7 +60777,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caw" = ( +"cav" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -60782,7 +60799,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cax" = ( +"caw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -60805,7 +60822,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cay" = ( +"cax" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; freq = 1400; @@ -60822,14 +60839,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caz" = ( +"cay" = ( /obj/machinery/computer/cryopod{ pixel_x = -32; pixel_y = -32 }, /turf/simulated/floor/tiled/white, /area/hallway/primary/aft) -"caA" = ( +"caz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Bar Maintenance"; @@ -60837,7 +60854,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"caB" = ( +"caA" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -60845,7 +60862,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caC" = ( +"caB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -60853,7 +60870,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caD" = ( +"caC" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -60861,10 +60878,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caE" = ( +"caD" = ( /turf/simulated/floor/tiled, /area/maintenance/library) -"caF" = ( +"caE" = ( /obj/structure/closet/crate/internals, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light/small{ @@ -60872,27 +60889,27 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caG" = ( +"caF" = ( /obj/structure/closet/crate, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caH" = ( +"caG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caI" = ( +"caH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caJ" = ( +"caI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caK" = ( +"caJ" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -60905,7 +60922,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caL" = ( +"caK" = ( /obj/machinery/button/remote/blast_door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -60920,7 +60937,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caM" = ( +"caL" = ( /obj/machinery/camera/network/civilian_west{ c_tag = "Cargo - Camera 1"; dir = 1 @@ -60930,14 +60947,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caN" = ( +"caM" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"caO" = ( +"caN" = ( /obj/effect/floor_decal/corner/brown/full, /obj/machinery/computer/guestpass{ pixel_x = -32; @@ -60949,7 +60966,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caP" = ( +"caO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -60963,7 +60980,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caQ" = ( +"caP" = ( /obj/structure/noticeboard{ pixel_y = -27 }, @@ -60972,14 +60989,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caR" = ( +"caQ" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caS" = ( +"caR" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; freq = 1400; @@ -60988,14 +61005,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/office) -"caT" = ( +"caS" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) }, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"caU" = ( +"caT" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -61013,7 +61030,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caV" = ( +"caU" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61033,7 +61050,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caW" = ( +"caV" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61053,7 +61070,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"caX" = ( +"caW" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -61072,34 +61089,34 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) +"caX" = ( +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "caY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/quartermaster/storage) "caZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 9 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) "cba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbb" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbc" = ( +"cbb" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -61115,7 +61132,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbd" = ( +"cbc" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -61127,7 +61144,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"cbe" = ( +"cbd" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -61136,7 +61153,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"cbf" = ( +"cbe" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -61148,7 +61165,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"cbg" = ( +"cbf" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -61162,7 +61179,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbh" = ( +"cbg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61180,7 +61197,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbi" = ( +"cbh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61198,7 +61215,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbj" = ( +"cbi" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61216,7 +61233,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"cbk" = ( +"cbj" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61238,14 +61255,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbl" = ( +"cbk" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbm" = ( +"cbl" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61253,32 +61270,32 @@ }, /turf/simulated/floor/tiled, /area/maintenance/library) +"cbm" = ( +/obj/structure/boulder{ + icon_state = "boulder2" + }, +/obj/structure/boulder{ + icon_state = "boulder2" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) "cbn" = ( -/obj/structure/boulder{ - icon_state = "boulder2" - }, -/obj/structure/boulder{ - icon_state = "boulder2" - }, +/obj/structure/boulder, +/obj/structure/boulder, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) "cbo" = ( -/obj/structure/boulder, -/obj/structure/boulder, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cbp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/plastic, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbq" = ( +"cbp" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbr" = ( +"cbq" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -61287,20 +61304,20 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cbs" = ( +"cbr" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbt" = ( +"cbs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbu" = ( +"cbt" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Maintenance"; req_access = list(48) @@ -61311,7 +61328,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbv" = ( +"cbu" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/disposalpipe/segment{ dir = 4 @@ -61322,7 +61339,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbw" = ( +"cbv" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61337,20 +61354,20 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbx" = ( +"cbw" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cby" = ( +"cbx" = ( /obj/structure/bed/chair, /obj/effect/landmark/start{ name = "Cargo Technician" }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbz" = ( +"cby" = ( /obj/random/junk, /obj/structure/disposalpipe/segment{ dir = 4 @@ -61358,7 +61375,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"cbA" = ( +"cbz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61371,13 +61388,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"cbB" = ( +"cbA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall, /area/maintenance/disposal) -"cbC" = ( +"cbB" = ( /obj/machinery/door/airlock/maintenance{ name = "Trash Compactor"; req_access = list(12) @@ -61395,30 +61412,30 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/disposal) -"cbD" = ( +"cbC" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cbE" = ( +"cbD" = ( /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cbF" = ( +"cbE" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/library) -"cbG" = ( +"cbF" = ( /obj/structure/closet, /obj/random/loot, /turf/simulated/floor/tiled, /area/maintenance/library) -"cbH" = ( +"cbG" = ( /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/library) -"cbI" = ( +"cbH" = ( /obj/structure/boulder{ icon_state = "boulder4" }, @@ -61427,7 +61444,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cbJ" = ( +"cbI" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61440,20 +61457,20 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbK" = ( +"cbJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/quartermaster/storage) +"cbK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "cbL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) -"cbM" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cbN" = ( +"cbM" = ( /obj/machinery/disposal, /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/disposalpipe/trunk{ @@ -61462,7 +61479,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbO" = ( +"cbN" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61477,22 +61494,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cbP" = ( +"cbO" = ( /obj/effect/landmark/start{ name = "Quartermaster" }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbQ" = ( +"cbP" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbR" = ( +"cbQ" = ( /obj/structure/table/standard, /turf/simulated/floor/carpet, /area/quartermaster/office) -"cbS" = ( +"cbR" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -61507,7 +61524,7 @@ }, /turf/simulated/floor/plating, /area/quartermaster/office) -"cbT" = ( +"cbS" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61522,7 +61539,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbU" = ( +"cbT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61532,7 +61549,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbV" = ( +"cbU" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -61543,7 +61560,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cbW" = ( +"cbV" = ( /obj/effect/decal/warning_stripes, /obj/structure/ladder/up{ pixel_y = 16 @@ -61552,10 +61569,10 @@ roof_type = null }, /area/maintenance/library) -"cbX" = ( +"cbW" = ( /turf/simulated/wall, /area/maintenance/disposal) -"cbY" = ( +"cbX" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 9 @@ -61563,7 +61580,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cbZ" = ( +"cbY" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61576,14 +61593,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"cca" = ( +"cbZ" = ( /obj/machinery/light/small/emergency{ dir = 1 }, /obj/structure/ladder, /turf/simulated/open, /area/maintenance/disposal) -"ccb" = ( +"cca" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -61593,37 +61610,37 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccc" = ( +"ccb" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 5 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccd" = ( +"ccc" = ( /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/disposal) -"cce" = ( +"ccd" = ( /obj/structure/lattice/catwalk, /obj/structure/sign/drop{ pixel_y = 32 }, /turf/simulated/open, /area/maintenance/disposal) -"ccf" = ( +"cce" = ( /turf/simulated/open, /area/maintenance/disposal) -"ccg" = ( +"ccf" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cch" = ( +"ccg" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cci" = ( +"cch" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate, /obj/machinery/light/small{ @@ -61631,13 +61648,13 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccj" = ( +"cci" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/crate/freezer, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cck" = ( +"ccj" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -61645,10 +61662,10 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccl" = ( +"cck" = ( /turf/unsimulated/chasm_mask, /area/outpost/mining_main/refinery) -"ccm" = ( +"ccl" = ( /obj/structure/weightlifter, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -61663,11 +61680,11 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccn" = ( +"ccm" = ( /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cco" = ( +"ccn" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61678,16 +61695,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccp" = ( +"cco" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccq" = ( +"ccp" = ( /obj/structure/table/standard, /obj/item/weapon/deck/cards, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccr" = ( +"ccq" = ( /obj/structure/table/standard, /obj/item/trash/tray, /obj/machinery/camera/network/civilian_west{ @@ -61696,7 +61713,7 @@ }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccs" = ( +"ccr" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61716,7 +61733,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/library) -"cct" = ( +"ccs" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61731,7 +61748,7 @@ roof_type = null }, /area/maintenance/library) -"ccu" = ( +"cct" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -61740,7 +61757,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /turf/simulated/floor/plating, /area/maintenance/library) -"ccv" = ( +"ccu" = ( /obj/structure/cable{ icon_state = "0-4"; d2 = 4 @@ -61760,7 +61777,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccw" = ( +"ccv" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -61775,7 +61792,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccx" = ( +"ccw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -61784,7 +61801,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccy" = ( +"ccx" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 @@ -61794,7 +61811,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccz" = ( +"ccy" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, @@ -61813,7 +61830,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccA" = ( +"ccz" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -61822,7 +61839,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/disposal) -"ccB" = ( +"ccA" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -61840,7 +61857,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccC" = ( +"ccB" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61862,7 +61879,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccD" = ( +"ccC" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -61880,12 +61897,12 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/library) -"ccE" = ( +"ccD" = ( /obj/effect/decal/cleanable/vomit, /obj/effect/decal/cleanable/vomit, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"ccF" = ( +"ccE" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61898,12 +61915,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) -"ccG" = ( +"ccF" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/large_stock_marker, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"ccH" = ( +"ccG" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -61914,14 +61931,14 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccI" = ( +"ccH" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"ccJ" = ( +"ccI" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -61937,25 +61954,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) +"ccJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/quartermaster/office) "ccK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/carpet, /area/quartermaster/office) "ccL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/start{ - name = "Shaft Miner" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/quartermaster/office) -"ccM" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -61967,7 +61984,7 @@ }, /turf/simulated/floor/carpet, /area/quartermaster/office) -"ccN" = ( +"ccM" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -61983,7 +62000,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccO" = ( +"ccN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -61993,7 +62010,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccP" = ( +"ccO" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -62010,7 +62027,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"ccQ" = ( +"ccP" = ( /obj/structure/disposalpipe/up{ icon_state = "pipe-u"; dir = 8 @@ -62034,7 +62051,7 @@ roof_type = null }, /area/maintenance/library) -"ccR" = ( +"ccQ" = ( /obj/machinery/disposal{ name = "External Disposals" }, @@ -62048,7 +62065,7 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccS" = ( +"ccR" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/closet/crate/trashcart, /obj/item/weapon/storage/bag/trash, @@ -62057,56 +62074,56 @@ }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccT" = ( +"ccS" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccU" = ( +"ccT" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccV" = ( +"ccU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 }, /turf/simulated/floor/tiled, /area/maintenance/disposal) -"ccW" = ( +"ccV" = ( /obj/machinery/light/small/emergency, /obj/structure/lattice/catwalk, /turf/simulated/open, /area/maintenance/disposal) -"ccX" = ( +"ccW" = ( /obj/machinery/light/small/emergency, /obj/structure/closet/crate, /turf/simulated/floor/plating, /area/maintenance/library) +"ccX" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) "ccY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/tracks/footprints, +/obj/effect/decal/cleanable/blood/tracks/footprints, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) "ccZ" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"cda" = ( /obj/structure/table/rack, /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdb" = ( +"cda" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cdc" = ( +"cdb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/camera/network/civilian_west{ c_tag = "Cargo - Main Warehouse"; @@ -62114,7 +62131,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"cdd" = ( +"cdc" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -62126,7 +62143,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cde" = ( +"cdd" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -62135,7 +62152,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdf" = ( +"cde" = ( /obj/machinery/light{ dir = 4; status = 0 @@ -62150,20 +62167,20 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdg" = ( +"cdf" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/wall, /area/maintenance/disposal) -"cdh" = ( +"cdg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/wall/r_wall, /area/maintenance/disposal) -"cdi" = ( +"cdh" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -62172,7 +62189,7 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdj" = ( +"cdi" = ( /obj/machinery/light/small/emergency{ dir = 8 }, @@ -62180,7 +62197,7 @@ /obj/random/loot, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdk" = ( +"cdj" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; req_access = list(31) @@ -62190,7 +62207,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/quartermaster/storage) -"cdl" = ( +"cdk" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2"; @@ -62205,7 +62222,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdm" = ( +"cdl" = ( /obj/structure/punching_bag, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -62217,7 +62234,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdn" = ( +"cdm" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/alarm{ dir = 1; @@ -62225,7 +62242,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdo" = ( +"cdn" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -62237,7 +62254,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdp" = ( +"cdo" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/newscaster{ pixel_x = 0; @@ -62245,17 +62262,17 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdq" = ( +"cdp" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdr" = ( +"cdq" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cds" = ( +"cdr" = ( /obj/structure/table/standard, /obj/machinery/microwave{ pixel_y = 6 @@ -62263,27 +62280,27 @@ /obj/effect/floor_decal/corner/red/diagonal, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdt" = ( +"cds" = ( /obj/machinery/door/window/westright, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdu" = ( +"cdt" = ( /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdv" = ( +"cdu" = ( /obj/machinery/door/window, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdw" = ( +"cdv" = ( /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdx" = ( +"cdw" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -62301,7 +62318,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdy" = ( +"cdx" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62321,7 +62338,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdz" = ( +"cdy" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62334,7 +62351,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdA" = ( +"cdz" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -62354,7 +62371,7 @@ /obj/structure/disposalpipe/junction, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdB" = ( +"cdA" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -62367,12 +62384,12 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdC" = ( +"cdB" = ( /obj/random/junk, /obj/random/junk, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"cdD" = ( +"cdC" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -62381,13 +62398,13 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdE" = ( +"cdD" = ( /obj/machinery/door/window/southright, /turf/simulated/floor/tiled/airless{ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdF" = ( +"cdE" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -62396,7 +62413,7 @@ icon_state = "asteroidfloor" }, /area/maintenance/disposal) -"cdG" = ( +"cdF" = ( /obj/random/junk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -62415,7 +62432,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdH" = ( +"cdG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -62432,7 +62449,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdI" = ( +"cdH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62453,7 +62470,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/cargo) -"cdJ" = ( +"cdI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62477,7 +62494,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdK" = ( +"cdJ" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -62507,7 +62524,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdL" = ( +"cdK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62532,7 +62549,7 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"cdM" = ( +"cdL" = ( /obj/machinery/door/airlock/maintenance{ req_one_access = list(12,54) }, @@ -62553,7 +62570,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/library) -"cdN" = ( +"cdM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -62570,7 +62587,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cdO" = ( +"cdN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 9 @@ -62590,13 +62607,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/library) -"cdP" = ( +"cdO" = ( /turf/simulated/wall, /area/outpost/mining_main/eva) -"cdQ" = ( +"cdP" = ( /turf/simulated/wall, /area/outpost/mining_main/refinery) -"cdR" = ( +"cdQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -62612,7 +62629,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cdS" = ( +"cdR" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -62625,7 +62642,7 @@ /obj/item/device/gps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdT" = ( +"cdS" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -62642,7 +62659,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdU" = ( +"cdT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, @@ -62656,7 +62673,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdV" = ( +"cdU" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -62671,7 +62688,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cdW" = ( +"cdV" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -62694,7 +62711,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cdX" = ( +"cdW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -62716,7 +62733,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cdY" = ( +"cdX" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 1 @@ -62730,7 +62747,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cdZ" = ( +"cdY" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -62743,7 +62760,7 @@ /obj/item/device/gps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cea" = ( +"cdZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -62751,14 +62768,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceb" = ( +"cea" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cec" = ( +"ceb" = ( /obj/machinery/portable_atmospherics/canister/air/airlock, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -62769,7 +62786,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ced" = ( +"cec" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -62785,7 +62802,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cee" = ( +"ced" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -62796,7 +62813,7 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cef" = ( +"cee" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -62809,14 +62826,14 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceg" = ( +"cef" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceh" = ( +"ceg" = ( /obj/machinery/conveyor{ dir = 8; id = "mining_internal" @@ -62825,11 +62842,11 @@ /obj/machinery/mineral/output, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cei" = ( +"ceh" = ( /obj/machinery/mineral/stacking_machine, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cej" = ( +"cei" = ( /obj/machinery/conveyor{ dir = 8; id = "mining_internal" @@ -62837,14 +62854,14 @@ /obj/machinery/mineral/input, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cek" = ( +"cej" = ( /obj/machinery/conveyor{ dir = 8; id = "mining_internal" }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cel" = ( +"cek" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -62860,7 +62877,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cem" = ( +"cel" = ( /obj/structure/track{ icon_state = "track3" }, @@ -62869,16 +62886,16 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) +"cem" = ( +/obj/structure/track{ + icon_state = "track6" + }, +/obj/structure/track{ + icon_state = "track6" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) "cen" = ( -/obj/structure/track{ - icon_state = "track6" - }, -/obj/structure/track{ - icon_state = "track6" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceo" = ( /obj/structure/track{ icon_state = "track14" }, @@ -62895,28 +62912,28 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) +"ceo" = ( +/obj/structure/track{ + icon_state = "track10" + }, +/obj/structure/ore_box{ + icon_state = "orebox1"; + name = "minecart ore box" + }, +/obj/structure/track{ + icon_state = "track10" + }, +/obj/structure/ore_box{ + icon_state = "orebox1"; + name = "minecart ore box" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) "cep" = ( -/obj/structure/track{ - icon_state = "track10" - }, -/obj/structure/ore_box{ - icon_state = "orebox1"; - name = "minecart ore box" - }, -/obj/structure/track{ - icon_state = "track10" - }, -/obj/structure/ore_box{ - icon_state = "orebox1"; - name = "minecart ore box" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceq" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cer" = ( +"ceq" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -62924,7 +62941,7 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ces" = ( +"cer" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -62934,7 +62951,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cet" = ( +"ces" = ( /obj/structure/grille, /obj/machinery/door/firedoor{ dir = 2 @@ -62949,7 +62966,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"ceu" = ( +"cet" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -62966,7 +62983,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cev" = ( +"ceu" = ( /obj/structure/grille, /obj/machinery/door/firedoor{ dir = 2 @@ -62980,7 +62997,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cew" = ( +"cev" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -62995,20 +63012,20 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cex" = ( +"cew" = ( /obj/machinery/mineral/stacking_unit_console{ machinedir = 1 }, /turf/simulated/wall, /area/outpost/mining_main/refinery) -"cey" = ( +"cex" = ( /obj/machinery/conveyor{ dir = 1; id = "mining_internal" }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cez" = ( +"cey" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63021,21 +63038,21 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) +"cez" = ( +/obj/structure/track{ + icon_state = "track12" + }, +/obj/structure/track{ + icon_state = "track12" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) "ceA" = ( -/obj/structure/track{ - icon_state = "track12" - }, -/obj/structure/track{ - icon_state = "track12" - }, +/obj/structure/track, +/obj/structure/track, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) "ceB" = ( -/obj/structure/track, -/obj/structure/track, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceC" = ( /obj/vehicle/train/cargo/engine/mining{ icon_state = "mining_engine"; dir = 2 @@ -63052,18 +63069,18 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) +"ceC" = ( +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track13" + }, +/obj/vehicle/train/cargo/trolley/mining, +/obj/structure/track{ + icon_state = "track13" + }, +/turf/simulated/floor/asteroid/ash/rocky, +/area/mine/unexplored) "ceD" = ( -/obj/vehicle/train/cargo/trolley/mining, -/obj/structure/track{ - icon_state = "track13" - }, -/obj/vehicle/train/cargo/trolley/mining, -/obj/structure/track{ - icon_state = "track13" - }, -/turf/simulated/floor/asteroid/ash/rocky, -/area/mine/unexplored) -"ceE" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63077,7 +63094,7 @@ /obj/item/device/gps/mining, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceF" = ( +"ceE" = ( /obj/machinery/door/window/southleft, /obj/structure/cable/green{ d1 = 1; @@ -63086,12 +63103,12 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceG" = ( +"ceF" = ( /obj/machinery/door/window/southright, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceH" = ( +"ceG" = ( /obj/structure/window/reinforced, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -63100,7 +63117,7 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceI" = ( +"ceH" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63108,7 +63125,7 @@ /obj/structure/closet/crate, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceJ" = ( +"ceI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -63119,21 +63136,21 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceK" = ( +"ceJ" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceL" = ( +"ceK" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 1 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceM" = ( +"ceL" = ( /obj/machinery/recharge_station, /obj/machinery/light{ icon_state = "tube1"; @@ -63142,7 +63159,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"ceN" = ( +"ceM" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63154,7 +63171,7 @@ /obj/item/weapon/ladder_mobile, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceO" = ( +"ceN" = ( /obj/structure/table/rack{ dir = 1 }, @@ -63176,7 +63193,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceP" = ( +"ceO" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63190,14 +63207,14 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"ceQ" = ( +"ceP" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceR" = ( +"ceQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -63208,10 +63225,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceS" = ( +"ceR" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceT" = ( +"ceS" = ( /obj/machinery/mineral/rigpress, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -63219,7 +63236,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"ceU" = ( +"ceT" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63232,7 +63249,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"ceV" = ( +"ceU" = ( /obj/machinery/mineral/output, /obj/machinery/conveyor{ dir = 1; @@ -63240,7 +63257,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"ceW" = ( +"ceV" = ( /obj/machinery/access_button{ command = "cycle_exterior"; frequency = 1379; @@ -63259,7 +63276,7 @@ }, /turf/simulated/floor/asteroid/ash/rocky, /area/mine/unexplored) -"ceX" = ( +"ceW" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -63276,7 +63293,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"ceY" = ( +"ceX" = ( /obj/machinery/light/small{ dir = 1 }, @@ -63290,7 +63307,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"ceZ" = ( +"ceY" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 2; frequency = 1379; @@ -63302,7 +63319,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfa" = ( +"ceZ" = ( /obj/structure/grille, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -63319,7 +63336,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfb" = ( +"cfa" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 8 @@ -63333,7 +63350,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfc" = ( +"cfb" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 1 @@ -63343,7 +63360,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfd" = ( +"cfc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -63354,7 +63371,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfe" = ( +"cfd" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ d1 = 4; @@ -63369,7 +63386,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cff" = ( +"cfe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63387,7 +63404,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfg" = ( +"cff" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63412,7 +63429,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfh" = ( +"cfg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63430,7 +63447,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfi" = ( +"cfh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -63446,7 +63463,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfj" = ( +"cfi" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -63454,11 +63471,11 @@ /obj/machinery/mineral/equipment_vendor, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfk" = ( +"cfj" = ( /obj/machinery/mineral/processing_unit, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfl" = ( +"cfk" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63472,7 +63489,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfm" = ( +"cfl" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63486,14 +63503,14 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfn" = ( +"cfm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfo" = ( +"cfn" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63509,7 +63526,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfp" = ( +"cfo" = ( /obj/machinery/access_button{ command = "cycle_interior"; frequency = 1379; @@ -63524,13 +63541,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfq" = ( +"cfp" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfr" = ( +"cfq" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact" @@ -63539,7 +63556,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfs" = ( +"cfr" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -63551,7 +63568,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cft" = ( +"cfs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/light{ icon_state = "tube1"; @@ -63559,7 +63576,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfu" = ( +"cft" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -63567,13 +63584,13 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfv" = ( +"cfu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfw" = ( +"cfv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -63587,11 +63604,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfx" = ( +"cfw" = ( /obj/machinery/mineral/processing_unit_console, /turf/simulated/wall, /area/outpost/mining_main/refinery) -"cfy" = ( +"cfx" = ( /obj/machinery/mineral/input, /obj/machinery/conveyor{ dir = 1; @@ -63599,7 +63616,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfz" = ( +"cfy" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 1 @@ -63617,7 +63634,7 @@ /obj/structure/sign/drop, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfA" = ( +"cfz" = ( /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ tag_airpump = "mining_east_pump"; tag_exterior_door = "mining_east_outer"; @@ -63635,7 +63652,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfB" = ( +"cfA" = ( /obj/structure/ore_box, /obj/machinery/airlock_sensor{ frequency = 1379; @@ -63654,7 +63671,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfC" = ( +"cfB" = ( /obj/effect/floor_decal/corner/brown/full, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; @@ -63663,7 +63680,7 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfD" = ( +"cfC" = ( /obj/machinery/atmospherics/binary/pump/on{ dir = 8; name = "Distro to Canisters"; @@ -63675,7 +63692,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfE" = ( +"cfD" = ( /obj/effect/floor_decal/industrial/warning/cee{ icon_state = "warningcee"; dir = 4 @@ -63685,7 +63702,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfF" = ( +"cfE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; @@ -63693,11 +63710,11 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfG" = ( +"cfF" = ( /obj/effect/floor_decal/corner/brown, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfH" = ( +"cfG" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63711,7 +63728,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfI" = ( +"cfH" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 8 @@ -63719,22 +63736,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfJ" = ( +"cfI" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfK" = ( +"cfJ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfL" = ( +"cfK" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfM" = ( +"cfL" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63750,7 +63767,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cfN" = ( +"cfM" = ( /obj/machinery/mech_recharger, /obj/machinery/light{ icon_state = "tube1"; @@ -63758,24 +63775,24 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cfO" = ( +"cfN" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfP" = ( +"cfO" = ( /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfQ" = ( +"cfP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfR" = ( +"cfQ" = ( /obj/structure/table/standard, /obj/item/device/suit_cooling_unit/improved, /obj/item/weapon/storage/toolbox/mechanical{ @@ -63792,7 +63809,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfS" = ( +"cfR" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63800,11 +63817,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfT" = ( +"cfS" = ( /obj/effect/floor_decal/corner/brown, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfU" = ( +"cfT" = ( /obj/machinery/conveyor_switch/oneway{ id = "mining_internal"; name = "mining conveyor" @@ -63815,7 +63832,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cfV" = ( +"cfU" = ( /obj/item/weapon/wrench, /obj/item/weapon/screwdriver, /obj/item/weapon/crowbar, @@ -63824,7 +63841,7 @@ icon_state = "asteroidplating" }, /area/outpost/mining_main/eva) -"cfW" = ( +"cfV" = ( /obj/item/weapon/cell/high{ charge = 100; maxcharge = 15000 @@ -63838,14 +63855,14 @@ icon_state = "asteroidplating" }, /area/outpost/mining_main/eva) -"cfX" = ( +"cfW" = ( /obj/machinery/cell_charger, /obj/structure/table/reinforced/steel, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/outpost/mining_main/eva) -"cfY" = ( +"cfX" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63859,15 +63876,15 @@ /obj/structure/ore_box, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cfZ" = ( +"cfY" = ( /obj/machinery/door/window/northleft, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cga" = ( +"cfZ" = ( /obj/machinery/door/window/northright, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgb" = ( +"cga" = ( /obj/structure/table/rack, /obj/item/clothing/head/helmet/space/void/mining, /obj/item/clothing/mask/breath, @@ -63882,7 +63899,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgc" = ( +"cgb" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 9 @@ -63891,7 +63908,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgd" = ( +"cgc" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -63906,7 +63923,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cge" = ( +"cgd" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -63917,13 +63934,13 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgf" = ( +"cge" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/airless{ icon_state = "asteroidplating" }, /area/outpost/mining_main/eva) -"cgg" = ( +"cgf" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -63934,7 +63951,7 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgh" = ( +"cgg" = ( /obj/machinery/camera/network/mining{ c_tag = "Mining - Suit Storage"; dir = 8 @@ -63950,7 +63967,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgi" = ( +"cgh" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -63961,20 +63978,20 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgj" = ( +"cgi" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgk" = ( +"cgj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgl" = ( +"cgk" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 6 @@ -63985,15 +64002,15 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgm" = ( +"cgl" = ( /obj/machinery/mineral/input, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgn" = ( +"cgm" = ( /obj/machinery/mineral/unloading_machine, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgo" = ( +"cgn" = ( /obj/machinery/conveyor{ dir = 1; id = "mining_internal" @@ -64001,7 +64018,7 @@ /obj/machinery/mineral/output, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgp" = ( +"cgo" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -64012,7 +64029,7 @@ /obj/structure/dispenser/oxygen, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgq" = ( +"cgp" = ( /obj/structure/table/rack, /obj/item/clothing/head/helmet/space/void/mining, /obj/item/clothing/mask/breath, @@ -64024,7 +64041,7 @@ /obj/item/stack/flag/purple, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgr" = ( +"cgq" = ( /obj/structure/table/standard, /obj/item/weapon/folder/yellow, /obj/item/weapon/pen, @@ -64032,7 +64049,7 @@ /obj/machinery/firealarm/west, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgs" = ( +"cgr" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -64044,7 +64061,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgt" = ( +"cgs" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; @@ -64052,7 +64069,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgu" = ( +"cgt" = ( /obj/effect/floor_decal/corner/brown/full{ icon_state = "corner_white_full"; dir = 4 @@ -64067,7 +64084,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/refinery) -"cgv" = ( +"cgu" = ( /obj/machinery/suit_cycler/mining, /obj/structure/window/reinforced{ dir = 8 @@ -64075,14 +64092,14 @@ /obj/effect/floor_decal/corner/brown/full, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgw" = ( +"cgv" = ( /obj/effect/floor_decal/corner/brown{ icon_state = "corner_white"; dir = 10 }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgx" = ( +"cgw" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/mining, /obj/item/clothing/mask/breath, @@ -64102,7 +64119,7 @@ }, /turf/simulated/floor/tiled, /area/outpost/mining_main/eva) -"cgy" = ( +"cgx" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64116,7 +64133,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgz" = ( +"cgy" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64127,7 +64144,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgA" = ( +"cgz" = ( /obj/structure/grille, /obj/structure/window/reinforced{ dir = 4 @@ -64142,7 +64159,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/refinery) -"cgB" = ( +"cgA" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64156,7 +64173,7 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgC" = ( +"cgB" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64167,7 +64184,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgD" = ( +"cgC" = ( /obj/machinery/door/firedoor{ dir = 2 }, @@ -64181,52 +64198,9 @@ }, /turf/simulated/floor/plating, /area/outpost/mining_main/eva) -"cgE" = ( +"cgD" = ( /turf/simulated/floor/asteroid/ash/rocky, /area/skipjack_station/cavern) -"cgF" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 1; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/investigations) -"cgG" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/investigations) -"cgH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark{ - name = "cooled dark floor"; - temperature = 278 - }, -/area/security/investigations) (1,1,1) = {" aaa @@ -68188,9 +68162,9 @@ aaa aaa aaa aaa -arK +arN aaa -arK +arN aaa aaa aaa @@ -68444,11 +68418,11 @@ aaa aaa aaa aaa -agZ -agZ -agZ -agZ -agZ +ahb +ahb +ahb +ahb +ahb aaa aaa aaa @@ -68700,13 +68674,13 @@ aaa aaa aaa aaa -arK -agZ -auI -awn -auI -agZ -arK +arN +ahb +auL +awq +auL +ahb +arN aaa aaa aaa @@ -68958,11 +68932,11 @@ aaa aaa aaa aaa -agZ -auI -auI -auI -agZ +ahb +auL +auL +auL +ahb aaa aaa aaa @@ -69214,13 +69188,13 @@ aab aab aab aaa -arK -agZ -auI -auI -auI -agZ -arK +arN +ahb +auL +auL +auL +ahb +arN aaa aaa aaa @@ -69472,11 +69446,11 @@ aab aab aab aab -ate -auJ -auJ -auJ -azA +ath +auM +auM +auM +azD aaa aaa aaa @@ -69730,9 +69704,9 @@ aaa aaa aab aab -auK -auK -auK +auN +auN +auN aab aaa aaa @@ -69988,7 +69962,7 @@ aab aab aab aab -auK +auN aab aab aaa @@ -70243,9 +70217,9 @@ aab aab aab aab -anR +anU aab -auK +auN aab aab aab @@ -70499,12 +70473,12 @@ aaa aab aab aab -anR -arK -auK -auK +anU +arN +auN +auN aab -anR +anU aab aab aab @@ -70756,13 +70730,13 @@ aab aab aab aab -anR -anR -auK -auK -auK -arK -anR +anU +anU +auN +auN +auN +arN +anU aab aab aab @@ -71010,16 +70984,16 @@ aaa aab aab aab -anR -anR -anR -anR -arK -auK -auK -auK -anR -anR +anU +anU +anU +anU +arN +auN +auN +auN +anU +anU aab aab aab @@ -71269,15 +71243,15 @@ aab aab aab aab -anR -anR -anR -auK -auK -auK -arK -anR -anR +anU +anU +anU +auN +auN +auN +arN +anU +anU aab aab aab @@ -71527,15 +71501,15 @@ aab aab aab aab -anR -arK -auK -auK -auK -anR -anR -anR -anR +anU +arN +auN +auN +auN +anU +anU +anU +anU aab aab aaa @@ -71787,13 +71761,13 @@ aab aab aab aab -auK -auK -arK -anR -anR -anR -anR +auN +auN +arN +anU +anU +anU +anU aab aab aaa @@ -72044,13 +72018,13 @@ aab aab aab aab -auK +auN aab -anR -anR -anR -anR -anR +anU +anU +anU +anU +anU aab aab aab @@ -72301,11 +72275,11 @@ aab aab aab aab -auK +auN aab aab aab -anR +anU aab aab aab @@ -72558,7 +72532,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -72815,7 +72789,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -73072,7 +73046,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -73329,7 +73303,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -73586,7 +73560,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -73843,7 +73817,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -73860,7 +73834,7 @@ aaa aaa aab aab -anR +anU aaa aaa aaa @@ -74100,7 +74074,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -74117,7 +74091,7 @@ aaa aaa aab aab -anR +anU aaa aaa aaa @@ -74357,7 +74331,7 @@ aab aab aab aab -auK +auN aab aab aab @@ -74613,9 +74587,9 @@ aab aab aab aab -auK -auK -auK +auN +auN +auN aab aab aab @@ -74863,25 +74837,25 @@ aaa aaa aaa aaa -akY -akY -akY -akY -akY -akY -akY -akY -awo -akY -akY -akY -akY -akY -akY -akY -akY -akY -akY +alb +alb +alb +alb +alb +alb +alb +alb +awr +alb +alb +alb +alb +alb +alb +alb +alb +alb +alb aab aab aab @@ -75120,25 +75094,25 @@ aaa aaa aaa aaa -akY -amS -amS -amT -aqq -arL -atf -auL -awp -auM -atf -aAT -aCL -aEA -aGz +alb amV -aJY -aLI -akY +amV +amW +aqt +arO +ati +auO +aws +auP +ati +aAW +aCO +aED +aGC +amY +aKb +aLL +alb aab aab aab @@ -75376,26 +75350,26 @@ aaa aaa aaa aaa -akY -akY -amS -amS -amT -amT -arL -atg -auM -awq -auM -atg -aAU -amT -aEB -aGA -aIf -amT -aLJ -akY +alb +alb +amV +amV +amW +amW +arO +atj +auP +awt +auP +atj +aAX +amW +aEE +aGD +aIi +amW +aLM +alb aab aab aab @@ -75633,26 +75607,26 @@ aaa aaa aaa aaa -akY -alS -amT -amT -amT -amT -arL -ath -auN -awr -ayb -ath -aAU +alb +alV +amW +amW +amW +amW +arO +atk +auQ +awu aye -apk -aqt -aIg -aJZ -aLJ -akY +atk +aAX +ayh +apn +aqw +aIj +aKc +aLM +alb aab aab aab @@ -75885,33 +75859,33 @@ aab aaa aaa aab -agZ -agZ -agZ -agZ -agZ -agZ -agZ -amU -amT -amT -amT -arL -ati -auO -aws -ayc -akY -aAV -aCM -aEC -aqt -aIh -aKa -aLK -akY -akY -akY +ahb +ahb +ahb +ahb +ahb +ahb +ahb +amX +amW +amW +amW +arO +atl +auR +awv +ayf +alb +aAY +aCP +aEF +aqw +aIk +aKd +aLN +alb +alb +alb aab aab aab @@ -76142,33 +76116,33 @@ aab aaa aaa aab -agZ -ahM -aiA -ajn -akc -ajn -agZ -amT -amT -amT -amT -arM -atj -auP -awt -ayd -azB -aAW -aCN -aEB -aGB -aIf -aKb -aLL -aNC -aPi -akY +ahb +ahO +aiC +ajp +ake +ajp +ahb +amW +amW +amW +amW +arP +atm +auS +aww +ayg +azE +aAZ +aCQ +aEE +aGE +aIi +aKe +aLO +aNF +aPl +alb aab aab aab @@ -76399,33 +76373,33 @@ aab aab aab aab -agZ -ahN -aiB -ajn -akd -akZ -alT -amV -anS -aph -aqr -aqr -aqr -apj -awu -aye -azC -aqr -aCO +ahb +ahP +aiD +ajp +akf +alc +alW +amY +anV apk -aqt -aIi -aKc -aLM -aND -aPj -akY +aqu +aqu +aqu +apm +awx +ayh +azF +aqu +aCR +apn +aqw +aIl +aKf +aLP +aNG +aPm +alb aab aab aab @@ -76656,33 +76630,33 @@ aaa aab aab aab -agZ -ahO -aiC -ajo -ake -ala -alU +ahb +ahQ +aiE +ajq +akg +ald +alX +amZ +anW +apl amW -anT -api -amT -amT -amT -auQ -awv -apk -amT -amT -anT -aED -aGC -aIj -amT -amT -akY -akY -akY +amW +amW +auT +awy +apn +amW +amW +anW +aEG +aGF +aIm +amW +amW +alb +alb +alb aab aab aab @@ -76913,31 +76887,31 @@ aaa aaa aab aab -agZ -ahN -aiD -ajn -akf +ahb +ahP +aiF +ajp +akh +ale +alX +ana +anX +apm +aqv +arQ +atn +atn +awz +ayi +atn +atn +aCS +atn +aGG +aIn +amW +aLQ alb -alU -amX -anU -apj -aqs -arN -atk -atk -aww -ayf -atk -atk -aCP -atk -aGD -aIk -amT -aLN -akY aab aab aab @@ -77170,31 +77144,31 @@ aaa aaa aab aab -agZ -ahP -aiE -ajp -akg -alc -agZ -amY -anV -apk -aqt -arO -atl -auR -awx -ayg -azD -aAX -aCQ -amT -aGE -aCQ -aKd -aLO -akY +ahb +ahR +aiG +ajr +aki +alf +ahb +anb +anY +apn +aqw +arR +ato +auU +awA +ayj +azG +aBa +aCT +amW +aGH +aCT +aKg +aLR +alb aab aab aab @@ -77427,32 +77401,32 @@ aaa aaa aab aab -aha -aha -aiF -aha -akh -aha -aiF -amZ -amZ -amZ -aqu -anf -atm -auS -awy -auS -azE -anf -aCR -aEE -aCR -aCR -akY -akY -akY -aKi +ahc +ahc +aiH +ahc +akj +ahc +aiH +anc +anc +anc +aqx +ani +atp +auV +awB +auV +azH +ani +aCU +aEH +aCU +aCU +alb +alb +alb +aKl aab aab aab @@ -77684,32 +77658,32 @@ aaa aaa aab aaa -aha -ahQ -aiG -ajq -aki -aiG -aiG -amZ -anW -apl -aqv -anf -atn -auT -awz -auT -azF -anf -aCS -aEF -aGF -aCR -aKe -aLP -aNE -aKi +ahc +ahS +aiI +ajs +akk +aiI +aiI +anc +anZ +apo +aqy +ani +atq +auW +awC +auW +azI +ani +aCV +aEI +aGI +aCU +aKh +aLS +aNH +aKl aab aab aab @@ -77941,38 +77915,38 @@ aaa aaa aab aaa -aha -ahR -aiH -ajr -akj -aiH -ahR -amZ -anX -apm -aqw -anf -ato -auU -awA -ayh -azG -anf -aCT -aEG -aGG -aCR -aKf -aLQ -aNF +ahc +ahT +aiJ +ajt +akl +aiJ +ahT +anc +aoa +app +aqz +ani +atr +auX +awD +ayk +azJ +ani +aCW +aEJ +aGJ +aCU aKi +aLT +aNI +aKl aaa aab aab aab aab -anR +anU aaa aaa aaa @@ -78198,32 +78172,32 @@ aaa aaa aab aaa -aha -ahS -aiI -ajs -akk -aiI -ahS -amZ -anY -apm -aqx -anf -atp -auV -awB -ayi -azH -anf +ahc +ahU +aiK +aju +akm +aiK +ahU +anc +aob +app +aqA +ani +ats +auY +awE +ayl +azK +ani +aCX +aEK +aCX aCU -aEH -aCU -aCR -aKg -aLP -aNG -aKi +aKj +aLS +aNJ +aKl aaa aab aab @@ -78455,32 +78429,32 @@ aaa aaa aab aaa -aha -ahT -aiG -ajt -akl -ald -alV -ana -anZ -apn -aqy -arP -atq -atq -awC -anb -azI -anf -aCV -aEI -aGH -aCR -aKh -aLR -aNF -aKi +ahc +ahV +aiI +ajv +akn +alg +alY +and +aoc +apq +aqB +arS +att +att +awF +ane +azL +ani +aCY +aEL +aGK +aCU +aKk +aLU +aNI +aKl aaa aaa aab @@ -78712,50 +78686,50 @@ aab aab aab aab -aha -ahU -aiJ -aju -akm -aiJ -ahU -amZ -aoa -apo -aqz -anf -atr -auW -awD -ayj -azJ -anf -aCW -aEJ -aGI -aCR -aKi -aKi -aNH -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi +ahc +ahW +aiL +ajw +ako +aiL +ahW +anc +aod +apr +aqC +ani +atu +auZ +awG +aym +azM +ani +aCZ +aEM +aGL +aCU +aKl +aKl +aNK +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl aaa aaa aaa @@ -78969,50 +78943,50 @@ aab aab aab aab -aha -aha -aha -aha -akn -aha -aha -amZ -aob -amZ -aqA -arQ -ats -auX -awE -ayk -auX -arQ -aCX -aEK -aCX -aIl -aKj -aLS -aNI -aPk -aQZ -aSq -aUf -aVf -aWN -aYc -aZv -aYc -aYc -aYc -aYc -aYc -bhv -biY -aKj -bly -aLT -aKi +ahc +ahc +ahc +ahc +akp +ahc +ahc +anc +aoe +anc +aqD +arT +atv +ava +awH +ayn +ava +arT +aDa +aEN +aDa +aIo +aKm +aLV +aNL +aPn +aRc +aSt +aUi +aVh +aWP +aYe +aZx +aYe +aYe +aYe +aYe +aYe +bhx +bja +aKm +blA +aLW +aKl aaa aaa aaa @@ -79228,48 +79202,48 @@ aab aab aab aab -aiK -ajv -ako -aiK -alW -anb -anb -app -aqB -arR -att -auY -awF -ayl -att -aAY -att -aEL -att -aIm -aKk -aKk -aNJ -aPl -aRa -aSr -aKi -aKi -aWO -aKi -aKi -aKi -aKi -aKi -aKi -aKi -aKi -biZ -aYc -aYc -bmW -aKi +aiM +ajx +akq +aiM +alZ +ane +ane +aps +aqE +arU +atw +avb +awI +ayo +atw +aBb +atw +aEO +atw +aIp +aKn +aKn +aNM +aPo +aRd +aSu +aKl +aKl +aWQ +aKl +aKl +aKl +aKl +aKl +aKl +aKl +aKl +bjb +aYe +aYe +bmY +aKl aaa aab aab @@ -79485,48 +79459,48 @@ aab aab aab aab -aiK -ajw -akp -ale -alX -alX -aoc -alX -aqC -arS -alX -auZ -awG -aym -azK -aAZ -aCY -aEM -aGJ -aIn +aiM +ajy +akr +alh +ama +ama +aof +ama +aqF +arV +ama +avc +awJ +ayp +azN +aBc +aDb +aEP +aGM +aIq +aKo +aLW +aKl +aKl +aKl +aKl +aKl +aVi +aWR +aYf +aZy +aZE +bbY +bdv +beJ +bgh +aKl +aKl +aKl +aKl +bmZ aKl -aLT -aKi -aKi -aKi -aKi -aKi -aVg -aWP -aYd -aZw -aZC -bbW -bdt -beH -bgf -aKi -aKi -aKi -aKi -bmX -aKi aaa aab aab @@ -79742,48 +79716,48 @@ aab aab aab aab -aiK -ajv -akq -aiK -alY -alY -alY -alY -alY -alY -anb -ava -awD -ayn -alY -aBa -aCZ -aCZ -aGK -alY -alY -aKi -aKi +aiM +ajx +aks +aiM +amb +amb +amb +amb +amb +amb +ane +avd +awG +ayq +amb +aBd +aDc +aDc +aGN +amb +amb +aKl +aKl aaa aaa aaa -aUg -aVh -aWQ -aYe -aZx -aZC -bbX +aUj +aVj +aWS +aYg +aZz +aZE bbZ -bbZ -bbZ -bbZ -bja -bkd -aKi -bmY -aKi +bcb +bcb +bcb +bcb +bjc +bkf +aKl +bna +aKl aaa aaa aab @@ -79999,48 +79973,48 @@ aab aab aab aab -aiK -ajv -akq -aiK -alZ -alZ -alZ -apq -aqD -alY -atu -ava -awD -ayn -azL -aBb -aDa -aEN -aGL -aIo -alY +aiM +ajx +aks +aiM +amc +amc +amc +apt +aqG +amb +atx +avd +awG +ayq +azO +aBe +aDd +aEQ +aGO +aIr +amb aaa -aLU -aLU -aLU +aLX +aLX +aLX aaa -aUg -aVi -aWR -aYf -aZy -baG -bbY -bdu -beI -beI -bhw -bjb -bke -aKi -bmY -aKi +aUj +aVk +aWT +aYh +aZA +baI +bca +bdw +beK +beK +bhy +bjd +bkg +aKl +bna +aKl aaa aaa aab @@ -80055,11 +80029,11 @@ aab aab aab aab -baJ -baJ -baJ -baJ -baJ +baL +baL +baL +baL +baL aab aab aab @@ -80256,48 +80230,48 @@ aab aab aab aab -aiK -ajx -akq -aiK -ama -anc -aod -apr -aqE -arT -atv -avb -awH -ayn -azM -aBc -aBc -aBc -aBc -aIp -alY -aLU -aLU -aPm -aLU -aLU -aLU -aVj -aWS -aYe -aZz -aZC -bbZ -bdv -beJ -beJ -bhx -bbZ -bkf -aKi -bmY -aKi +aiM +ajz +aks +aiM +amd +anf +aog +apu +aqH +arW +aty +ave +awK +ayq +azP +aBf +aBf +aBf +aBf +aIs +amb +aLX +aLX +aPp +aLX +aLX +aLX +aVl +aWU +aYg +aZB +aZE +bcb +bdx +beL +beL +bhz +bcb +bkh +aKl +bna +aKl aaa aab aab @@ -80308,17 +80282,17 @@ aab aab aab aab -baJ -baJ -baJ -baJ -baJ -bFV -bGX -bly -baJ -baJ -baJ +baL +baL +baL +baL +baL +bFW +bGY +blA +baL +baL +baL aab aab aaa @@ -80513,48 +80487,48 @@ aab aab aab aab -aiK -ajv -akq -aiK +aiM +ajx +aks +aiM +ame +ang +aoh +ang +ang +arX +atz +avd +awG +ayq +azQ +aBg +aBf +aBf +aBf +aIt amb -and -aoe -and -and -arU -atw -ava -awD -ayn -azN -aBd -aBc -aBc -aBc -aIq -alY -aLV -aNK -aPn -aRb -aSs -aLU -aVk -aWT -aYe -aZA +aLY +aNN +aPq +aRe +aSv +aLX +aVm +aWV +aYg aZC -bca -bbZ -bbZ -bbZ -bbZ -bbZ -bkg -aKi -bmY -aKi +aZE +bcc +bcb +bcb +bcb +bcb +bcb +bki +aKl +bna +aKl aaa aab aab @@ -80565,17 +80539,17 @@ aab aab aab aab -baJ -bCb -baK -baK -baK -baK -baK -baK -baK -bJO -baJ +baL +bCc +baM +baM +baM +baM +baM +baM +baM +bJP +baL aab aab aaa @@ -80770,74 +80744,74 @@ aab aab aab aab -aiK -ajv -akq -aiK -amc -and -aof -and -aqF -alY -atx -ava -awI -ayo -azO -aBd -aBc -aBc -aGM -aIr -alY -aLW -aNL -aPo -aRc -aSt -aLU -aVl -aWU -aYe -aZB -aZC -bcb -bdw -beK -bgg -bhy -bhy -aZC -aKi -bmY -aKi +aiM +ajx +aks +aiM +amf +ang +aoi +ang +aqI +amb +atA +avd +awL +ayr +azR +aBg +aBf +aBf +aGP +aIu +amb +aLZ +aNO +aPr +aRf +aSw +aLX +aVn +aWW +aYg +aZD +aZE +bcd +bdy +beM +bgi +bhA +bhA +aZE +aKl +bna +aKl aab aab aab -anR +anU aab aab aab aab aab aab -bBf -bdJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -bJP -baJ +bBg +bdL +baL +baL +baL +baL +baL +baL +baL +bJQ +baL aab aab -anR -anR -anR +anU +anU +anU aab aaa aaa @@ -81027,73 +81001,73 @@ aab aab aab aab -aiK -ajv -akq -aiK -amd -ane -aog -amd -aqG -alY -aty -ava -awD -ayn -azO -aBe -aBc -aEO -aGN -aIs -alY +aiM +ajx +aks +aiM +amg +anh +aoj +amg +aqJ +amb +atB +avd +awG +ayq +azR +aBh +aBf +aER +aGQ +aIv +amb +aMa +aNO +aPs +aRg +aSx aLX -aNL -aPp -aRd -aSu -aLU -aVm -aWV -aYg -aZC -aZC -aZC -aZC -aZC -aZC -aZC -aZC -aZC -aKi -bmZ -aKi -aab -aab -aab -aab -aab -aab -aab -bxP -aab -aab -bBg -bdJ +aVo +aWX +aYi +aZE +aZE +aZE +aZE +aZE +aZE +aZE +aZE +aZE aKl +bnb aKl -baJ -bDU -aKl -aKl -baJ -bdJ -baJ aab aab -anR -anR +aab +aab +aab +aab +aab +bxQ +aab +aab +bBh +bdL +aKo +aKo +baL +bDV +aKo +aKo +baL +bdL +baL +aab +aab +anU +anU aab aab aab @@ -81284,37 +81258,37 @@ aab aab aab aab -aiK -ajv -akq -aiK -ame -ane -aog -aps -aqG -alY -atz -avc -awJ -ayp -azP -aBe -aDb -aEP -aGO -aIt -alY -aLY -aNM -aPq -aRe -aSv -aUh -aVn -aWW -aYh -aPz +aiM +ajx +aks +aiM +amh +anh +aoj +apv +aqJ +amb +atC +avf +awM +ays +azS +aBh +aDe +aES +aGR +aIw +amb +aMb +aNP +aPt +aRh +aSy +aUk +aVp +aWY +aYj +aPC aab aab aab @@ -81323,31 +81297,31 @@ aab aab aab aab -aKi -bmY -aKi -aab -aab -aab -aab -aab -aab -bwH -bxQ -bwH -aab -bBg -bdJ -baJ -bdF -baJ -bdF -baJ aKl -baJ -bdJ -baJ -baJ +bna +aKl +aab +aab +aab +aab +aab +aab +bwI +bxR +bwI +aab +bBh +bdL +baL +bdH +baL +bdH +baL +aKo +baL +bdL +baL +baL aab aab aab @@ -81541,75 +81515,75 @@ aab aab aab aab -aiK -aiK -akr -aiK -aiK -anf -anf -anf -anf -anf -anf -avd -awK -ayq -alY +aiM +aiM +akt +aiM +aiM +ani +ani +ani +ani +ani +ani +avg +awN +ayt +amb +aBi aBf -aBc -aBc -aGP -aIt -alY -aLZ -aNL -aPn -aRf -aSw -aUi -aDk -aWX -aYi -aPz +aBf +aGS +aIw +amb +aMc +aNO +aPq +aRi +aSz +aUl +aDn +aWZ +aYk +aPC aab -bcc -bcc -bcc -bcc -bcc +bce +bce +bce +bce +bce aab aab -aKi -bmY -aKi -aab -aab -aab -aab -aab -aab -bwI -bxR -bwI -aab -bBg -bdJ -baJ aKl -baJ +bna aKl -baJ -baJ -baJ -bJQ -bFV -baJ aab aab aab -anR -anR +aab +aab +aab +bwJ +bxS +bwJ +aab +bBh +bdL +baL +aKo +baL +aKo +baL +baL +baL +bJR +bFW +baL +aab +aab +aab +anU +anU aab aab aaa @@ -81798,79 +81772,79 @@ aab aab aab aab -aiK -ajv -akq -ajv -aiK -ang -ang -ang -ang -ang -anf -ave -awL -ayr -azN -aBg -aBc -aBc -aGP -aIu -alY -aMa -aNN -aPr -aRg -aNL -aUj -aVo -aWX -aBr -aPz +aiM +ajx +aks +ajx +aiM +anj +anj +anj +anj +anj +ani +avh +awO +ayu +azQ +aBj +aBf +aBf +aGS +aIx +amb +aMd +aNQ +aPu +aRj +aNO +aUm +aVq +aWZ +aBu +aPC aab -bcc -bdx -beL -bgh -bcc +bce +bdz +beN +bgj +bce aab aab -aKi -bmY -aKi -anR -aab -aab -aab -aab -aab -bwJ -bxS -bzh -aab -bBg -bdJ -baJ aKl -bdF +bna aKl -aKl -aKl -baJ -bdJ -bKO -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ +anU +aab +aab +aab +aab +aab +bwK +bxT +bzi +aab +bBh +bdL +baL +aKo +bdH +aKo +aKo +aKo +baL +bdL +bKP +baL +baL +baL +baL +baL +baL +baL +baL +baL +baL aaa aaa aaa @@ -82055,85 +82029,85 @@ aab aab aab aab -aiK -ajw -akq -ajv -aiK -ang -ang -ang -ang -ang -anf -avf -awD -ays -azP -aBh -aDc -aEQ -aGQ -aIv -alY -aMb -aNO -aPs -aRh -aSx -aUk -aVp -aWY -aBr -aPz +aiM +ajy +aks +ajx +aiM +anj +anj +anj +anj +anj +ani +avi +awG +ayv +azS +aBk +aDf +aET +aGT +aIy +amb +aMe +aNR +aPv +aRk +aSA +aUn +aVr +aXa +aBu +aPC aab -bcc -bdy -beM -beM -bcc +bce +bdA +beO +beO +bce aab aab -aKi -bmY -aKi -anR -anR -anR -anR -anR -baJ -baJ -bxT -baJ +aKl +bna +aKl +anU +anU +anU +anU +anU +baL +baL +bxU +baL aab -bBh -bdJ -baJ -aKl -baJ -baJ -aKl -baJ -baJ -bdJ -aKl -beT -aKl -bdF -aKl -aKl -aKl -aKl -bpG -bFV -baJ -baJ -baJ -baJ -baJ -baJ -baJ +bBi +bdL +baL +aKo +baL +baL +aKo +baL +baL +bdL +aKo +beV +aKo +bdH +aKo +aKo +aKo +aKo +bpI +bFW +baL +baL +baL +baL +baL +baL +baL aab aab aab @@ -82312,85 +82286,85 @@ aab aab aab aab -aiK -ajy -akq -ajv -aiK -ang -ang -ang -ang -ang -anf -avf -awD -ayt -alY -alY -alY -aER -aGR -alY -alY -aMc -aNP -aPt -aRi -aSy -aLU -aVq -aWX -aYj -aPz -baH -bcc -bdz -beN -bgi -bcc -bcc +aiM +ajA +aks +ajx +aiM +anj +anj +anj +anj +anj +ani +avi +awG +ayw +amb +amb +amb +aEU +aGU +amb +amb +aMf +aNS +aPw +aRl +aSB +aLX +aVs +aWZ +aYl +aPC +baJ +bce +bdB +beP +bgk +bce +bce aab -aKi -bmY -aKi -anR -anR -anR -anR -anR -baJ -bwK -bxU -baJ +aKl +bna +aKl +anU +anU +anU +anU +anU +baL +bwL +bxV +baL aab -baJ -bCc -baJ -aKl -baJ -bDU -aKl -aKl -baJ -bdJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -aKl -aKl -bdF -aKl -aKl -aKl -aKl -aKl -aKl -baJ +baL +bCd +baL +aKo +baL +bDV +aKo +aKo +baL +bdL +baL +baL +baL +baL +baL +baL +baL +aKo +aKo +bdH +aKo +aKo +aKo +aKo +aKo +aKo +baL aaa aaa aab @@ -82569,85 +82543,85 @@ aab aab aab aab -aiL -ajv -aks -alf -aiK -ang -ang -ang -ang -ang -anf -avf -awD -ayu -azQ -aBi -aDd -aES -aGS -aIw -aKm -aDk -aDk -aPu -aRj -aSz -aUl -aDk -aWX -aBr -aZD -baH -bcd -bdA -bdA -bdA -bhz -bcc +aiN +ajx +aku +ali +aiM +anj +anj +anj +anj +anj +ani +avi +awG +ayx +azT +aBl +aDg +aEV +aGV +aIz +aKp +aDn +aDn +aPx +aRm +aSC +aUo +aDn +aWZ +aBu +aZF +baJ +bcf +bdC +bdC +bdC +bhB +bce aab -aKi -bna -aKi -baJ -baJ -baJ -baJ -baJ -baJ -baJ -bxV -baJ -baJ -baJ -bCd -baJ aKl -baJ -baJ -baJ -bdF -baJ -bdJ -baJ -anR -baJ -bMV -bNC -bOe -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ +bnc aKl -baJ +baL +baL +baL +baL +baL +baL +baL +bxW +baL +baL +baL +bCe +baL +aKo +baL +baL +baL +bdH +baL +bdL +baL +anU +baL +bMW +bND +bOf +baL +baL +baL +baL +baL +baL +baL +baL +baL +aKo +baL aaa aaa aab @@ -82823,88 +82797,88 @@ aab aab aab aab -agC -ahb -ahV -aiK -aiK -akt -alg -aiK -ang -ang -ang -ang -ang -anf -avg -awM -ayv -azR -aBj -aDe -aET -aGT -aIx -aKn -aDj -aDj -aPv -aRk -aSA -aUm -aVr -aWZ -aYk -aZE -baH +agE +ahd +ahX +aiM +aiM +akv +alj +aiM +anj +anj +anj +anj +anj +ani +avj +awP +ayy +azU +aBm +aDh +aEW +aGW +aIA +aKq +aDm +aDm +aPy +aRn +aSD +aUp +aVt +aXb +aYm +aZG +baJ +bcg +bdD +bdC +bdC +bhC bce -bdB -bdA -bdA -bhA -bcc -aKi -aKi -bmY -aKl -bpG -bqP -brV -bly -aLT -baJ -baJ -bxW -baJ -bAh -bBi -bCe -baJ -bDU -aKl -baJ aKl aKl -aKl -bdJ -baJ -baJ -baJ -bMW -bND -aKl -baJ -bPj +bna +aKo +bpI +bqR +brX +blA +aLW +baL +baL +bxX +baL +bAi +bBj +bCf +baL +bDV +aKo +baL +aKo +aKo +aKo +bdL +baL +baL +baL +bMX +bNE +aKo +baL +bPi +bPo +bPo +bPT +bRA +bPT +bSy bPp -bPp -bPU -bRB -bPU -bSz -bPq -aKl -baJ +aKo +baL aaa aaa aaa @@ -83080,88 +83054,88 @@ aab aab aab aab -agD -ahc -ahW +agF +ahe +ahY +aiO +ajB +akw +alk aiM -ajz -aku -alh -aiK -ang -ang -ang -ang -ang -anf -avh -awN -ayw -azS -aBk -aDf -aEU -aGU -aIy +anj +anj +anj +anj +anj +ani +avk +awQ +ayz +azV +aBn +aDi +aEX +aGX +aIB +aKr +aMg +aNT +aPz +aRo +aSE +aUq +aVu +aXc +aYn +aZH +baK +bch +bdE +beQ +bgl +bhD +bce +bkj +blB +bnd +baM +bpJ +baM +brY +bto +bto +bto +bto +baM +bto +bAj aKo -aMd -aNQ -aPw -aRl -aSB -aUn -aVs -aXa -aYl -aZF -baI -bcf -bdC -beO -bgj -bhB -bcc -bkh -blz -bnb -baK -bpH -baK -brW -btm -btm -btm -btm -baK -btm -bAi -aKl -aKl -bCZ -bCZ -bCZ -bCZ -bCZ -bCZ -bCZ -bdJ -aKl -bLx -baJ -baJ -bNE -baJ -baJ -bPk -bPT -aKl -baJ +aKo +bDa +bDa +bDa +bDa +bDa +bDa +bDa +bdL +aKo +bLy +baL +baL +bNF +baL +baL +bPj +bPS +aKo +baL +bRB bRC -bRD -bSA -baJ -aKl -baJ +bSz +baL +aKo +baL aaa aaa aaa @@ -83337,88 +83311,88 @@ aab aab aab aab -agE -ahc -ahX -aiN -aiK -aiK -aiK -aiK -ajD -ajD -ajD -ajD -ajD -atA -atA -atA -atA -atA -aBl -aDg -aEV -aGV -aGW -aKp -aMe -aNR -aPx -aDi -aSC -aUo -aVt -aXb -aBr -aZG -baH -bcg -bdA -bdA -bdA -bhC -bcc -beR -blA -blA -blA -bpI -bqQ -bqQ -bqQ -bqQ -bvH -bvH -bvH -bvH -bvH -bvH -bvH -bvH -bDV -bES -bFW -bGY -bIk -bIY -bJR -bgm -bLy -bMt -blz -bgm -bOf -baJ -bPl -bPp -bQs -bQS -bRD -aKl -bSB -baJ -aKl +agG +ahe +ahZ +aiP +aiM +aiM +aiM +aiM +ajF +ajF +ajF +ajF +ajF +atD +atD +atD +atD +atD +aBo +aDj +aEY +aGY +aGZ +aKs +aMh +aNU +aPA +aDl +aSF +aUr +aVv +aXd +aBu +aZI baJ +bci +bdC +bdC +bdC +bhE +bce +beT +blC +blC +blC +bpK +bqS +bqS +bqS +bqS +bvI +bvI +bvI +bvI +bvI +bvI +bvI +bvI +bDW +bET +bFX +bGZ +bIl +bIZ +bJS +bgo +bLz +bMu +blB +bgo +bOg +baL +bPk +bPo +bQr +bQR +bRC +aKo +bSA +baL +aKo +baL aaa aaa aaa @@ -83458,7 +83432,7 @@ aaa aaa aaa aaa -cbn +cbm aaa aaa aaa @@ -83594,88 +83568,88 @@ aab aab aab aab -agE -ahd -ahY -aiO -agD -akv -ali -amf -anh -aoh -apt -aqH -arV -atB -avi -awO -ayx -atA -aBm -aDg -aEV -aGW -aGW -aKq -aMe -aNS -aPy -aRm -aSD -aUp -aVu -aXc -aYm -aPz -baH -bcg -bdD -beP -bgk -bhD -bcc -bki -blA -bnc -box -bpJ -bqQ -brX -btn -bup -bvH -bwL -bxX -bzi -bAj -bBj -bCf -bDa -bDW -bET -bFX -bGZ -bIl -bIZ -bIZ -bIZ -bIZ -bIZ -bIZ -bIZ -bOg -baJ -bPm -bPU -bQt -bPp -bRE -bPp -bPp -baJ -aKl +agG +ahf +aia +aiQ +agF +akx +all +ami +ank +aok +apw +aqK +arY +atE +avl +awR +ayA +atD +aBp +aDj +aEY +aGZ +aGZ +aKt +aMh +aNV +aPB +aRp +aSG +aUs +aVw +aXe +aYo +aPC baJ +bci +bdF +beR +bgm +bhF +bce +bkk +blC +bne +boz +bpL +bqS +brZ +btp +buq +bvI +bwM +bxY +bzj +bAk +bBk +bCg +bDb +bDX +bEU +bFY +bHa +bIm +bJa +bJa +bJa +bJa +bJa +bJa +bJa +bOh +baL +bPl +bPT +bQs +bPo +bRD +bPo +bPo +baL +aKo +baL aaa aaa aaa @@ -83851,88 +83825,88 @@ aab aab aab aab -agE -ahe -ahZ -aiP -agF -akw -alj -amg -amg -amg -apu -amg -arW -atC -avj -awP -avj -azT -aBn -aDg -aEW -aGX -aIz -aKq -aMe -aNT -aPz -aPz -aPz -aUq -aDk -aXd -aYn -aPz -baH -bch -bdA -bdA -bdA -bhE -bcc -beR -blA -bnd -boy -bpK -bqQ -brY -bto -buq -bvH -bwM -bxY -bzj -bAk -bBk -bCf -bDb -bDW -bEU -bFY -bHa -bDW -bIZ -bJS -bJS -bJS -bJS -bJS -bIZ -beR +agG +ahg +aib +aiR +agH +aky +alm +amj +amj +amj +apx +amj +arZ +atF +avm +awS +avm +azW +aBq +aDj +aEZ +aHa +aIC +aKt +aMh +aNW +aPC +aPC +aPC +aUt +aDn +aXf +aYp +aPC baJ -bPn -bPV -bQu -bQT +bcj +bdC +bdC +bdC +bhG +bce +beT +blC +bnf +boA +bpM +bqS +bsa +btq +bur +bvI +bwN +bxZ +bzk +bAl +bBl +bCg +bDc +bDX +bEV +bFZ +bHb +bDX +bJa +bJT +bJT +bJT +bJT +bJT +bJa +beT +baL +bPm bPU -bPV -bSC -baJ -aKl -baJ +bQt +bQS +bPT +bPU +bSB +baL +aKo +baL aaa aaa aaa @@ -83958,7 +83932,7 @@ aaa aaa aaa aaa -cbn +cbm aaa aaa aaa @@ -84108,88 +84082,88 @@ aeV aab aab aab -agE -ahf -ahZ -aiQ -ajA -akx -alk -amh -amh -amh -apv -aqI -arX -atD -avk -awQ -ayy -azU -aBo -aDg -aEX -aGW -aGW -aKr -aMe -aNU -aPA -aRn -aSE -aUr -aDk -aXc +agG +ahh +aib +aiS +ajC +akz +aln +amk +amk +amk +apy +aqL +asa +atG +avn +awT +ayB +azX aBr -aZH -baH -bci -bdE -beQ -bgl -bhF -bcc -beR -blB -bne -blB -blB -bqQ -brZ -btp -brZ -bvH -bwN -bxZ -bzk -bAl -bBl -bBl -bDc -bDX -bEV -bFZ -bHb -bIm -bIZ -bJS -bJS -bJS -bJS -bJS -bIZ -beR +aDj +aFa +aGZ +aGZ +aKu +aMh +aNX +aPD +aRq +aSH +aUu +aDn +aXe +aBu +aZJ baJ +bck +bdG +beS +bgn +bhH +bce +beT +blD +bng +blD +blD +bqS +bsb +btr +bsb +bvI +bwO +bya +bzl +bAm +bBm +bBm +bDd +bDY +bEW +bGa +bHc +bIn +bJa +bJT +bJT +bJT +bJT +bJT +bJa +beT +baL +bPn +bxX +bPT +bQT +bPT +bNE bPo -bxW -bPU -bQU -bPU -bND -bPp -baJ -aKl -baJ +baL +aKo +baL aaa aaa aaa @@ -84208,14 +84182,14 @@ aaa aaa aaa aaa +cbm +cbH +aaa +aaa +ccX +aab +aab cbn -cbI -aaa -aaa -ccY -aab -aab -cbo aaa aab aab @@ -84365,88 +84339,88 @@ aab aab aab aab -agE -ahg -aia -aiR -ajB -aky -all -ami -ani -ani -apw -aqJ -arY -atE -avl -awR -ayz -azV -aBj -aDh -aEY -aGY -aIA -aKs -aMf -aNS -aPB -aRo -aSF -aUs +agG +ahi +aic +aiT +ajD +akA +alo +aml +anl +anl +apz +aqM +asb +atH +avo +awU +ayC +azY +aBm aDk -aXc -aBr -aZI -baH -bcc -bcc -bcc -bcc -bcc -bcc -beR -aKi -bnf -aKi -aab -bqQ -bsa -btq -bur -bvH -bwO -bya -bzl -bAm -bBm -bCg -bvH -bDY -bEU -bFY -bHc -bIn -bIZ -bJS -bJS -bJS -bJS -bJS -bIZ -beR +aFb +aHb +aID +aKv +aMi +aNV +aPE +aRr +aSI +aUv +aDn +aXe +aBu +aZK baJ -bPp -bPp -bPp -bQV +bce +bce +bce +bce +bce +bce +beT aKl -bPp +bnh aKl -baJ -aKl -baJ +aab +bqS +bsc +bts +bus +bvI +bwP +byb +bzm +bAn +bBn +bCh +bvI +bDZ +bEV +bFZ +bHd +bIo +bJa +bJT +bJT +bJT +bJT +bJT +bJa +beT +baL +bPo +bPo +bPo +bQU +aKo +bPo +aKo +baL +aKo +baL aaa aaa aaa @@ -84465,14 +84439,14 @@ aaa aaa aaa aaa -cbo +cbn aab aab aab -ccZ -ccZ +ccY +ccY aab -ccZ +ccY aab aab aab @@ -84622,98 +84596,98 @@ aab aab aab aab -agE -ahh -aib -aiS -ajC -akz -alm -amj -anj -aoi -apx -aqK -arZ -atF -avm -awS -ayA -azW -aBp -aDi -aEZ -aDi -aDi -aKt -aDi -aNV -aDk -aRp -aSG -aUs -aDk -aXc -aBr -aZI -aPz +agG +ahj +aid +aiU +ajE +akB +alp +amm +anm +aol +apA +aqN +asc +atI +avp +awV +ayD +azZ +aBs +aDl +aFc +aDl +aDl +aKw +aDl +aNY +aDn +aRs +aSJ +aUv +aDn +aXe +aBu +aZK +aPC +aKo +aKo +bdI +bgo +bgo +bgo +beU aKl +bnh aKl -bdG -bgm -bgm -bgm -beS -aKi -bnf -aKi aab -bqQ -bsb -btr -bus -bvH -bwP -byb -bzm -bAn -bBn -bCh -bvH -bDZ -bEW -bFY -bHd -bIo -bIZ -bJS -bJS -bJS -bJS -bJS -bIZ -beR -baJ -bPq -baJ -baJ -baJ -baJ -baJ -baJ -baJ +bqS +bsd +btt +but +bvI +bwQ +byc +bzn +bAo +bBo +bCi +bvI +bEa +bEX +bFZ +bHe +bIp +bJa +bJT +bJT +bJT +bJT +bJT +bJa beT -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ +baL +bPp +baL +baL +baL +baL +baL +baL +baL +beV +baL +baL +baL +baL +baL +baL +baL +baL +baL +baL +baL aab aaa aaa @@ -84724,10 +84698,10 @@ aaa aaa aaa aaa -cch +ccg aab -cbo -ccY +cbn +ccX aaa aaa aab @@ -84879,98 +84853,98 @@ aab aab aab aab -agF -ahi -aic -aiT -agF -akA -aln -amj -ank -aoj -apy -aqL -asa -atG -avn -awT -ayB -azX -aBq -aDj -aFa -aGZ -aDk -aKu -aMg -aNW +agH +ahk +aie +aiV +agH +akC +alq +amm +ann +aom +apB +aqO +asd +atJ +avq +awW +ayE +aAa +aBt +aDm +aFd +aHc +aDn +aKx +aMj +aNZ +aPF +aRt +aSK +aUv +aDn +aXe +aBu +aZK aPC -aRq -aSH -aUs -aDk -aXc -aBr -aZI -aPz -aKl -bdF -beR -aKi -aKi -aKi -aZM -aZM -bng -aZM -aZM -bqQ -bsc -bts -but -bvH -bwQ -byc -bzn -bAo -bAo -bCi -bvH -bEa -bEX -bFZ -bHe -bIp -bIZ -bJS -bJS -bJS -bJS -bJS -bIZ -bOh -blz -bPr -blz -bQv +aKo +bdH +beT aKl aKl aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -bdF -aKl -aKl -aKl -aKl -aKl -baJ +aZO +aZO +bni +aZO +aZO +bqS +bse +btu +buu +bvI +bwR +byd +bzo +bAp +bAp +bCj +bvI +bEb +bEY +bGa +bHf +bIq +bJa +bJT +bJT +bJT +bJT +bJT +bJa +bOi +blB +bPq +blB +bQu +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +bdH +aKo +aKo +aKo +aKo +aKo +baL aab aab aaa @@ -84982,7 +84956,7 @@ aaa aab aab aab -ccE +ccD aaa aaa aaa @@ -85025,8 +84999,8 @@ aab aab aab aab -cgE -cgE +cgD +cgD aab aab aab @@ -85136,107 +85110,107 @@ aab aab aab aab -agC -agC -agC -agC -agC -akB -alo -amk -anl -aok -apz -aqM -ajD -atH -avo -awU -ayC -azY -aBr -aDk -aDk -aHa -aIB -aKv -aDk -aDk -aPD -aRr -aSF -aUt -aIB -aXe -aBr -aZJ -aPz +agE +agE +agE +agE +agE +akD +alr +amn +ano +aon +apC +aqP +ajF +atK +avr +awX +ayF +aAb +aBu +aDn +aDn +aHd +aIE +aKy +aDn +aDn +aPG +aRu +aSI +aUw +aIE +aXg +aBu +aZL +aPC +aKo +aKo +beT +aKl +aab +aab +aZO +blE +bnj +boB +bpN +bqS +bsf +btv +buv +bvI +bwS +bye +bzp +bAp +bAp +bCk +bvI +bEc +bEZ +bGb +bHg +bIr +bJa +bJa +bJa +bJa +bJa +bJa +bJa aKl aKl -beR -aKi -aab -aab -aZM -blC -bnh -boz -bpL -bqQ -bsd -btt -buu -bvH -bwR -byd -bzo -bAo -bAo -bCj -bvH -bEb -bEY -bGa -bHf -bIq -bIZ -bIZ -bIZ -bIZ -bIZ -bIZ -bIZ -aKi -aKi -aKi -aKi -beR -baJ -baJ aKl -baJ -baJ -bQW aKl -baJ -baJ -baJ -baJ -baJ -bRI -baJ -baJ -aKl -baJ -baJ -baJ +beT +baL +baL +aKo +baL +baL +bQV +aKo +baL +baL +baL +baL +baL +bRH +baL +baL +aKo +baL +baL +baL aaa aaa -baJ -baJ -baJ -baJ -baJ +baL +baL +baL +baL +baL aaa aaa aaa @@ -85272,19 +85246,19 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -85397,103 +85371,103 @@ aab aab aab aab -ajD -akC -alp -aml -anm -aol -apy -aqN -ajD -atI -avp -awV -ayC -azZ -aBs -aDl -aFb -aHb -aIC -aKw -aMh -aNX -aPE -aRs -aSI -aRs -aPD -aXf -aYo -aZK -aPz -aKl -bdG -beS -aKi -aab -aab +ajF +akE +als +amo +anp +aoo +apB +aqQ +ajF +atL +avs +awY +ayF +aAc +aBv +aDo +aFe +aHe +aIF +aKz +aMk +aOa +aPH +aRv +aSL +aRv +aPG +aXh +aYq aZM -blD -bni -boA -bpL -bqQ -bqQ -btu -bqQ -bvH -bwS -bye -bzp -bAp -bBo -bCk -bvH -bEc -bEZ -bDW -bHg -bIr -bJa -bJT -bKP -bLz -bMu -bLD -bNF -bOi -bOS -bPs -aKi -beR -baJ -bRF -bRU -bSD -bRH +aPC +aKo +bdI +beU aKl +aab +aab +aZO +blF +bnk +boC +bpN +bqS +bqS +btw +bqS +bvI +bwT +byf +bzq +bAq +bBp +bCl +bvI +bEd +bFa +bDX +bHh +bIs +bJb +bJU +bKQ +bLA +bMv +bLE +bNG +bOj +bOR +bPr aKl -aKl -baJ -bVF -aKl -aKl -aKl -bSD -baJ -aKl -bpG -aKj -baJ -baJ -baJ -baJ -bpG -aLT -aKj -baJ +beT +baL +bRE +bRT +bSC +bRG +aKo +aKo +aKo +baL +bVE +aKo +aKo +aKo +bSC +baL +aKo +bpI +aKm +baL +baL +baL +baL +bpI +aLW +aKm +baL aaa aaa aaa @@ -85530,18 +85504,18 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -85654,110 +85628,110 @@ aab aab aab aab -ajD -ajD -ajD -amm -ajD -aom -apA -aom -ajD -atJ -avq -awW -ayD -ayD -aBt -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aVv -aXg -aYp -aPz -aPz -baJ -bdH -beT -aKi -aKi -aKi -aZM -blE -bnj -boB -bpM -aZM -bse -btv -buv -bvH -bwT -byf -bzq -bzq -bzq -bCl -bvH -bEd -bCZ -bEd -bHh -bEd -bJa -bJU -bKQ -bLA -bLD -bLD -bNG -bOj -bOT -bOj -aKi -bQw -bQW -bRG +ajF +ajF +ajF +amp +ajF +aop +apD +aop +ajF +atM +avt +awZ +ayG +ayG +aBw +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aVx +aXi +aYr +aPC +aPC +baL +bdJ +beV aKl aKl aKl +aZO +blG +bnl +boD +bpO +aZO +bsg +btx +buw +bvI +bwU +byg +bzr +bzr +bzr +bCm +bvI +bEe +bDa +bEe +bHi +bEe +bJb +bJV +bKR +bLB +bLE +bLE +bNH +bOk +bOS +bOk aKl +bQv +bQV +bRF +aKo +aKo +aKo +aKo +bUk +aKo +bRH bUl -aKl +aKo +bdH +aKo +aKo +baL +aKo +bdH +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +baL +aaa +aaa +bRI +bRI +bRI +bRI bRI -bUm -aKl -bdF -aKl -aKl -baJ -aKl -bdF -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -baJ -aaa -aaa -bRJ -bRJ -bRJ -bRJ -bRJ aaa aab aab @@ -85787,18 +85761,18 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -85914,107 +85888,107 @@ aab aab aaa afr -amn -ajD -aon -apB -aqO -asb -atK -avr -awX -ayE -aAa -aBu -aDn -aFc -aHc -aDm -aKx -aMi -aDm -aPF -aRt -aSJ -aDm -aVw -aXh -aYq -aUz +amq +ajF +aoq +apE +aqR +ase +atN +avu +axa +ayH +aAd +aBx +aDq +aFf +aHf +aDp +aKA +aMl +aDp +aPI +aRw +aSM +aDp +aVy +aXj +aYs +aUC aab -baJ -bdI -beU -beU -beU -bjc -aZM -blF -bnk -boC -bpM -aZM -bsf -btw -bsf -bvI -bwU -byg -bsf -bAq -bsf -bsf -bDd -bEe -bFa -bGb -bHi -bIs -bJb -bJV -bKR -bLB -bLD -bLD -bNF -bOj -bOj -bOj -aKi -beR +baL +bdK +beW +beW +beW +bje +aZO +blH +bnm +boE +bpO +aZO +bsh +bty +bsh +bvJ +bwV +byh +bsh +bAr +bsh +bsh +bDe +bEf +bFb +bGc +bHj +bIt +bJc +bJW +bKS +bLC +bLE +bLE +bNG +bOk +bOk +bOk aKl -bdF -aKl -bdF -bTl -aKl -bdF -aKl -baJ -aKl -aKl -aKl -aKl -aKl -baJ beT -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -beT -baJ -bRJ -bRJ -bRJ -cda -cdj -cdw -bRJ +aKo +bdH +aKo +bdH +bTk +aKo +bdH +aKo +baL +aKo +aKo +aKo +aKo +aKo +baL +beV +baL +baL +baL +baL +baL +baL +baL +baL +beV +baL +bRI +bRI +bRI +ccZ +cdi +cdv +bRI aab aab aab @@ -86043,19 +86017,19 @@ aaa aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -86171,112 +86145,112 @@ aab aab aab afr -amo -ajD -aoo -amg -aqP -asc -atL -avs -awY -ayE -aAb -aBv -aDm -aFd -aHd -aDm -aKy -aFl -aDm -aFl -aFl -aFl -aDm -aVx -aXi -aYr -aUz +amr +ajF +aor +amj +aqS +asf +atO +avv +axb +ayH +aAe +aBy +aDp +aFg +aHg +aDp +aKB +aFo +aDp +aFo +aFo +aFo +aDp +aVz +aXk +aYt +aUC aab -baJ -bdJ +baL +bdL +aKo +aZO +aZO +bjf +aZO +blI +bnn +blI +bpP +aZO +bsi +btz +bux +bvK +bwW +bvK +bvK +bAs +bvK +bCn +bDf +bEg +bFc +bvK +bHk +bvK +bJd +bJX +bKT +bLD +bMw +bMY +bJb +bJb +bJb +bJb aKl -aZM -aZM -bjd -aZM -blG -bnl -blG -bpN -aZM -bsg -btx -buw -bvJ -bwV -bvJ -bvJ -bAr -bvJ -bCm -bDe -bEf -bFb -bvJ -bHj -bvJ -bJc -bJW -bKS -bLC -bMv -bMX -bJa -bJa -bJa -bJa -aKi -beR -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -aKl -bRH -baJ -bdG -bYi -bYD -bYi -bYi -bSI -bSI -bSI -bSI -bSI -bSI -cbJ -bSI -ccF -bSI -bSI -cdx -bRJ +beT +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +aKo +bRG +baL +bdI +bYh +bYC +bYh +bYh +bSH +bSH +bSH +bSH +bSH +bSH +cbI +bSH +ccE +bSH +bSH +cdw +bRI aab aab aab aab -ceA +cez aab aab aab @@ -86304,19 +86278,19 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -86428,113 +86402,113 @@ aab aab aab afr -amp -ajD -aop -amg -aqQ -asc -atM -avs -awZ -ayE -aAc -aBw -aDm -aFe -aHe -aDm -aHe -aMj -aDm -aHe -aRu -aHe -aDm -aVy -aXi -aYs -aUz +ams +ajF +aos +amj +aqT +asf +atP +avv +axc +ayH +aAf +aBz +aDp +aFh +aHh +aDp +aHh +aMm +aDp +aHh +aRx +aHh +aDp +aVA +aXk +aYu +aUC aab -baJ -bdJ -beV -aZM -bhG -bje -bkj -blH -bnm -boD -bpO -bqR -bsf -bty -bux -bvK -bwW -bwW -bwW -bAs -bwW -bCn -bwW -bEg -bFc -bGc -bsf -bIt -bJd -bJX -bKR -bLD -bLD -bMY -bLD -bOk -bOU -bPt -baJ -beR -aKl -bRH -bdF -aKl -aKl -aKl -bUm -aKl -baJ -bRU -aKl -bQW -bdF -aKl -bQW -bXM -bYj -bYE -bYj -bYj -bZA -bZA -bZA -bZA -bZA -bZA -bZA -bZA -bZA -bZA -bZA -bVT -bRJ +baL +bdL +beX +aZO +bhI +bjg +bkl +blJ +bno +boF +bpQ +bqT +bsh +btA +buy +bvL +bwX +bwX +bwX +bAt +bwX +bCo +bwX +bEh +bFd +bGd +bsh +bIu +bJe +bJY +bKS +bLE +bLE +bMZ +bLE +bOl +bOT +bPs +baL +beT +aKo +bRG +bdH +aKo +aKo +aKo +bUl +aKo +baL +bRT +aKo +bQV +bdH +aKo +bQV +bXL +bYi +bYD +bYi +bYi +bZz +bZz +bZz +bZz +bZz +bZz +bZz +bZz +bZz +bZz +bZz +bVS +bRI aab aab aab -cem -ceB -cem +cel +ceA +cel aab aab aab @@ -86561,19 +86535,19 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -86685,114 +86659,114 @@ aab aab aaa afr -amq -ajD -aoq -apC -aqR -asc -atN -avt -axa -ayE -aAd -aBx -aDm -aFf -aHf -aID -aKz -aHh -aNY -aPG -aHh -aSK -aUu -aVz -aXi -aVz -aUz +amt +ajF +aot +apF +aqU +asf +atQ +avw +axd +ayH +aAg +aBA +aDp +aFi +aHi +aIG +aKC +aHk +aOb +aPJ +aHk +aSN +aUx +aVB +aXk +aVB +aUC aab -baJ -bdK -beW -bgn -bhH -bjf -bkk -blI -bnn -boE -bpO baL -bsh -bty -bux -bvL -bwX -byh -byh -byh -byh -byh -bDf -bvL -bvL -bvL -bvL -bvL -bJa -bJY -bKT -bLE -bMw -bMZ -bNH -bOl -bJa -bPu -baJ -bQx -baJ -baJ -baJ -baJ -baJ -baJ -bUn -bSD -baJ -baJ -baJ -baJ -baJ -bWS -aKl -bXM -bYj -bYF -bYU -bZn -bZA -bZW -cam -caF -caY -cbp -cbK -cci -ccG -ccG -bZA -cdy -bRJ +bdM +beY +bgp +bhJ +bjh +bkm +blK +bnp +boG +bpQ +baN +bsj +btA +buy +bvM +bwY +byi +byi +byi +byi +byi +bDg +bvM +bvM +bvM +bvM +bvM +bJb +bJZ +bKU +bLF +bMx +bNa +bNI +bOm +bJb +bPt +baL +bQw +baL +baL +baL +baL +baL +baL +bUm +bSC +baL +baL +baL +baL +baL +bWR +aKo +bXL +bYi +bYE +bYT +bZm +bZz +bZV +cal +caE +caX +cbo +cbJ +cch +ccF +ccF +bZz +cdx +bRI aab aab aab aab -ceA +cez aab -ceW +ceV aab aab aab @@ -86816,22 +86790,22 @@ aaa aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aaa @@ -86942,118 +86916,118 @@ aab aab aaa afr -amq -ajD -ajD -ajD -ajD -asc -asc -asc -asc -ayE -aAe -aBy -aDm -aFg +amt +ajF +ajF +ajF +ajF +asf +asf +asf +asf +ayH +aAh +aBB +aDp aFj -aFj -aFj -aFj -aNZ -aFj -aFj -aSL -aUv -aVz -aXi -aVz -aUz +aFm +aFm +aFm +aFm +aOc +aFm +aFm +aSO +aUy +aVB +aXk +aVB +aUC aab -baJ -bdK -beX -aZM -bhI -bjg -bkl -blJ -bno -blR -bpP -bqS -bsf -bty -buy -bvL -bwY -byi -byi -byi -byi -bCo -bDg -bEh -bFd -bGd -bHk -bIu -bIu -bIu -bIu -bIu -bIu -bIu -bIu -bIu -bJa -bPu -bPW -beR -bQX -baJ -bRV -bSE -bTm -baJ -baJ -baJ -baJ -bRJ -bVS -bSI -bSI -bSI -bSI -bVV -bYj -bYG -bYV -bZo -bZB -bZX -can -caG -caY -cbq -cbL -ccj -caY -cdb +baL +bdM +beZ +aZO +bhK +bji +bkn +blL +bnq +blT +bpR +bqU +bsh +btA +buz +bvM +bwZ +byj +byj +byj +byj +bCp +bDh +bEi +bFe +bGe +bHl +bIv +bIv +bIv +bIv +bIv +bIv +bIv +bIv +bIv +bJb +bPt +bPV +beT +bQW +baL +bRU +bSD +bTl +baL +baL +baL +baL +bRI +bVR +bSH +bSH +bSH +bSH +bVU +bYi +bYF +bYU +bZn bZA -bVT -bRJ +bZW +cam +caF +caX +cbp +cbK +cci +caX +cda +bZz +bVS +bRI aab aab aab -cen -ceC -cdP -ceX -cfm -cfz -cdP -cfV +cem +ceB +cdO +ceW +cfl +cfy +cdO +cfU aab aab aab @@ -87071,25 +87045,25 @@ aab aaa aaa aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aaa aaa @@ -87199,118 +87173,118 @@ aab aab aaa afr -amq +amt afr -aor -apD +aou +apG afr -asd -akD -akD -akD -akD -akD -aBz -aDo -aFh -aHg -aHg -aKA -aMk -aOa -aHg -aHg -aSM -aUw -aVA -aXj -aVz +asg +akF +akF +akF +akF +akF +aBC +aDr +aFk +aHj +aHj +aKD +aMn +aOd +aHj +aHj +aSP aUz -baJ -baJ -bdK -beX -aZM -bhJ -bjh -bkm -blK -bnp -boF -bpQ -bqT -bsf -bty -buz -bvL -bwZ -byj -bzr -bzr -bzr -bzr -bDh -bEi -bFe -bGe -bHl -bIu -bJe -bJZ -bKU -bLF -bMx -bNa -bNI -bOm -bIu -bPv -baJ -bOh -bQY -baJ -bPU -bSF -bND -bTL -bUo -bUJ -bVi -bRJ -bVT -bWm -bWm -bWm -bWm -bWm -bWm -bWm -bWm -bRJ -bZA -bZY -cao +aVC +aXl +aVB +aUC +baL +baL +bdM +beZ +aZO +bhL +bjj +bko +blM +bnr +boH +bpS +bqV +bsh +btA +buA +bvM +bxa +byk +bzs +bzs +bzs +bzs +bDi +bEj +bFf +bGf +bHm +bIv +bJf +bKa +bKV +bLG +bMy +bNb +bNJ +bOn +bIv +bPu +baL +bOi +bQX +baL +bPT +bSE +bNE +bTK +bUn +bUI +bVh +bRI +bVS +bWl +bWl +bWl +bWl +bWl +bWl +bWl +bWl +bRI +bZz +bZX +can +caG +caY caH -caZ -caI -caI -caI -caI -caI -cdk -cdz -bRJ +caH +caH +caH +caH +cdj +cdy +bRI aab aab aab -ceo -ceD -cdP -ceY -ceb -cfA -cdP -cfW +cen +ceC +cdO +ceX +cea +cfz +cdO +cfV aab aab aab @@ -87329,24 +87303,24 @@ aaa aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aaa aaa @@ -87456,118 +87430,118 @@ aab aab aaa afr -amr -ann -aos -apE +amu +anq +aov +apH afr -ahp +ahr afr afr afr afr afr afr -aDm -aFi -aHh -aHh -aKB -aHh -aHh -aHh -aHh -aSN -aUx -aVz -aXk -aYt -aZL -baK -baK -bdL -beX -aZM -bhK -bjg -bkn -blJ -bnq -boG -bpR -bqU -bsf -btz -buA -bvM -bxa -byk -bzs -bAt -bBp -bCp -bDi -bEj -bFf -bGf -bHm -bIu -bJf -bKa -bKV +aDp +aFl +aHk +aHk +aKE +aHk +aHk +aHk +aHk +aSQ +aUA +aVB +aXm +aYv +aZN +baM +baM +bdN +beZ +aZO +bhM +bji +bkp +blL +bns +boI +bpT +bqW +bsh +btB +buB +bvN +bxb +byl +bzt +bAu +bBq +bCq +bDj +bEk +bFg +bGg +bHn +bIv +bJg bKb -bMy -bKh -bKh -bKh +bKW +bKc bMz -bPt -baJ -aKi -bOg -bRI -bRW +bKi +bKi +bKi +bMA +bPs +baL +aKl +bOh +bRH +bRV +bSF bSG -bSH -bTM -bND -bUK -bVj -bRJ -bVT -bWm -bWF -bWF -bWF -bWF -bWF -bYH -bWm +bTL +bNE +bUJ +bVi +bRI +bVS +bWl +bWE +bWE +bWE +bWE +bWE +bYG +bWl aab -bZA -bZZ -cap -caI -cba -caY -caY -caY -caY -cdc -bZA -bVT -bRJ +bZz +bZY +cao +caH +caZ +caX +caX +caX +caX +cdb +bZz +bVS +bRI aab aab aab -cep -ceD -cdP -ceZ -cfn -cfB -cdP -cfX +ceo +ceC +cdO +ceY +cfm +cfA +cdO +cfW aab aab aab @@ -87586,24 +87560,24 @@ aaa aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aaa aaa @@ -87713,119 +87687,119 @@ aaa aaa aaa afr -amq +amt afr -aot -apF +aow +apI afr -ahp +ahr afr aaa aaa aaa aaa aaa -aDp -aFj -aHi -aIE -aKC -aMl -aFj -aPH -aFl -aSO -aUy +aDs +aFm +aHl +aIH +aKF +aMo +aFm +aPK +aFo +aSR +aUB +aVD +aXk aVB -aXi -aVz -aZM -baL -baL -baL -beY -aZM -bhL -bjg -bko -blL -bnr -boH -bpS -bqV -bsi -bty -buB -bvL -bxb -byl -bzt -bAu -bBq -bCq -bDj -bEk -bFg -bGg -bHn -bIu +aZO +baN +baN +baN +bfa +aZO +bhN +bji +bkq +blN +bnt +boJ +bpU +bqX +bsk +btA +buC +bvM +bxc +bym +bzu +bAv +bBr +bCr +bDk +bEl +bFh +bGh +bHo +bIv +bJh +bKc bJg -bKb -bJf -bLG -bMz -bNb -bKh -bOn -bIu -bIu -bIu -aKi -bOg -baJ -bPV -bSH -bTn -bTN -bUp -bUL -bVk -bRJ -bVT -bWm -bWF -bWT -bWT -bWT -bWT -bWF -bWm +bLH +bMA +bNc +bKi +bOo +bIv +bIv +bIv +aKl +bOh +baL +bPU +bSG +bTm +bTM +bUo +bUK +bVj +bRI +bVS +bWl +bWE +bWS +bWS +bWS +bWS +bWE +bWl aab -bZA -caa -caq -caJ -cbb -cbr -cbr -cck -ccG -ccG -bZA -bVT -bRJ +bZz +bZZ +cap +caI +cba +cbq +cbq +ccj +ccF +ccF +bZz +bVS +bRI aaa aab aab aab -cdP -cdP -cfa -cfo -cfa -cdP -cdP -cgf +cdO +cdO +ceZ +cfn +ceZ +cdO +cdO +cge aab aab aab @@ -87843,24 +87817,24 @@ aaa aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aaa aaa @@ -87970,122 +87944,122 @@ afr afr afr afr -ams +amv afr afr afr afr -ase +ash afr afr afr afr afr aaa -aDm -aFk -aHj -aIF -aDm -aMm -aOb -aPI -aRv -aSP -aDm -aVC -aXl -aVz -aZM -baM -baM -baL -beY -aZM -bhM -bji -bkp -blM -bns -boI -boI -bqW -bsj -btA -buC -bvL -bxc -byl -bzr -bzr -bBr -bCr -bDk -bzr -bFh -bCo -bHo -bIu -bJh -bKb -bJf -bLH -bIu -bNc -bNJ -bOo -bIu +aDp +aFn +aHm +aII +aDp +aMp +aOe +aPL +aRy +aSS +aDp +aVE +aXn +aVB +aZO +baO +baO +baN +bfa +aZO +bhO +bjk +bkr +blO +bnu +boK +boK +bqY +bsl +btC +buD +bvM +bxd +bym +bzs +bzs +bBs +bCs +bDl +bzs +bFi +bCp +bHp +bIv +bJi +bKc +bJg +bLI +bIv +bNd +bNK +bOp +bIv aab aab -aKi -bOg -bRJ -bRJ -bRJ -bRJ -bRJ -bRJ -bRJ -bRJ -bRJ -bVU -bWm -bWG -bWF -bWF -bWF -bWF -bWF -bWm -aab -bZA -cab -car -caK -bZA -bZA -bZA -bZA -bZA -bZA -bZA +aKl +bOh +bRI +bRI +bRI +bRI +bRI +bRI +bRI +bRI +bRI bVT -bRJ -cdP -cdP -cdP -cdP -cdP -ceM -cfb -cfp -cfC -cfN -cdP -cdP -cdP -cdP -cdP +bWl +bWF +bWE +bWE +bWE +bWE +bWE +bWl +aab +bZz +caa +caq +caJ +bZz +bZz +bZz +bZz +bZz +bZz +bZz +bVS +bRI +cdO +cdO +cdO +cdO +cdO +ceL +cfa +cfo +cfB +cfM +cdO +cdO +cdO +cdO +cdO aab aab aaa @@ -88100,24 +88074,24 @@ aab aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aaa aaa @@ -88220,129 +88194,129 @@ aaR afr afr afr -agG -ahj -aid -aiU -aiU -akD -alq -amt -akD -aou -aos -aqS -asf -atO -aos -axb -ayF +agI +ahl +aif +aiW +aiW +akF +alt +amw +akF +aox +aov +aqV +asi +atR +aov +axe +ayI afr aaa -aDm -aFl -aFl -aFl -aDm -aMn -aFl -aFl -aFl -aFl -aDm -aVz -aXi -aVz -aZM +aDp +aFo +aFo +aFo +aDp +aMq +aFo +aFo +aFo +aFo +aDp +aVB +aXk +aVB +aZO +baP +bcl baN -bcj -baL -beY -aZM -baL -baL -baL -blN -bnt -baL -baL -baL -bsk -bty -bux -bvL -bxd -bym -bzu -bAv -bBs -bCs -bDl -bEl -bFi -bGh -bHp -bIu -bJi -bKc -bKW -bLI -bIu -bIu -bIu -bIu -bIu -bIu -bIu -bIu -bQZ -bRK -bRX -bSI -bSI -bSI -bSI -bSI -bSI -bSI -bVV -bWm -bWF -bWU -bWF -bWF -bYk -bWF -bWm +bfa +aZO +baN +baN +baN +blP +bnv +baN +baN +baN +bsm +btA +buy +bvM +bxe +byn +bzv +bAw +bBt +bCt +bDm +bEm +bFj +bGi +bHq +bIv +bJj +bKd +bKX +bLJ +bIv +bIv +bIv +bIv +bIv +bIv +bIv +bIv +bQY +bRJ +bRW +bSH +bSH +bSH +bSH +bSH +bSH +bSH +bVU +bWl +bWE +bWT +bWE +bWE +bYj +bWE +bWl aab -bZA -bZA -cas -bZA -bZA -cbs -cbM -cbM -cbM -cbM -cdl -cdA -cdG -cdP -cdS -cdZ -cdZ -ceE -ceN -cfc -cfq -cfD -cfO -cfY -cgg -cgp -cgv -cgB +bZz +bZz +car +bZz +bZz +cbr +cbL +cbL +cbL +cbL +cdk +cdz +cdF +cdO +cdR +cdY +cdY +ceD +ceM +cfb +cfp +cfC +cfN +cfX +cgf +cgo +cgu +cgA aab aab aaa @@ -88357,24 +88331,24 @@ aab aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aaa aaa @@ -88476,130 +88450,130 @@ acF acF afs afK -agj -agH -ahk +agk +agJ +ahm afr afr afr afr afr -amu -ano -aov -apG -aqT -asg -atP -atP -axc -ayG +amx +anr +aoy +apJ +aqW +asj +atS +atS +axf +ayJ afr afr -aDm +aDp +aFp +aHn +aIJ +aDp +aMr aFm -aHk -aIG -aDm -aMo -aFj -aPJ -aRw -aSQ -aDm -aVD -aXi -aVz -aZM -baO -bck -baL -beY -aZM -bhN -bjj -bhN -blO -bnu -boJ -bpT -baL -bsl -btB -buD -bvN -bvN -bvN -bvN -bvN -bvN -bvN -bvN -bvN -bFj -bFj -bFj -bFj -bJj -bKd -bKX -bLJ -bIu -bNd -bIu -bOp -bOp -bOp -bOp -bQy -bRa -bRL -bRY -bRL -bRL -bRL -bRL -bRL -bRL -bRL -bRL -bWm -bWF -bWF -bWF -bWF -bWF -bWF -bWm +aPM +aRz +aST +aDp +aVF +aXk +aVB +aZO +baQ +bcm +baN +bfa +aZO +bhP +bjl +bhP +blQ +bnw +boL +bpV +baN +bsn +btD +buE +bvO +bvO +bvO +bvO +bvO +bvO +bvO +bvO +bvO +bFk +bFk +bFk +bFk +bJk +bKe +bKY +bLK +bIv +bNe +bIv +bOq +bOq +bOq +bOq +bQx +bQZ +bRK +bRX +bRK +bRK +bRK +bRK +bRK +bRK +bRK +bRK +bWl +bWE +bWE +bWE +bWE +bWE +bWE +bWl aab -bZA -cac -cat -caL -bZA -cbt -bRJ -bRJ -bRJ -bRJ -bRJ -bRJ -cdH -cdP -cdT -cea -cea -ceF -cea -cfd -cfq -cfE -cfP -cfZ -cfP -cfP -cgw -cgC +bZz +cab +cas +caK +bZz +cbs +bRI +bRI +bRI +bRI +bRI +bRI +cdG +cdO +cdS +cdZ +cdZ +ceE +cdZ +cfc +cfp +cfD +cfO +cfY +cfO +cfO +cgv +cgB aab aab aaa @@ -88613,25 +88587,25 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aaa aaa @@ -88733,130 +88707,130 @@ aep aeW afs afK -agk -agI -ahk +agl +agK +ahm afr aab -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -axd -ayH -aAf +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +axg +ayK +aAi afr -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aDm -aVE -aXi -aYu -aZM -baP -bcl -baL -beY -aZM -bhO -bjk -bkq -blP -bnv -bjg -bpT -baL -bsm -bty -bux -bvN -bxe -byn -bzv -bAw -bBt -bCt -bDm -bEm +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aDp +aVG +aXk +aYw +aZO +baR +bcn +baN +bfa +aZO +bhQ +bjm +bks +blR +bnx +bji +bpV +baN +bso +btA +buy +bvO +bxf +byo +bzw +bAx +bBu +bCu +bDn +bEn +bFl +bGj +bHr bFk -bGi -bHq -bFj -bJk -bKe -bKY -bLK -bMA -bMA -bMA +bJl +bKf +bKZ +bLL +bMB +bMB +bMB +bOr +bOr +bPv bOq -bOq -bPw -bOp -bQz -bdJ -bRL -bRZ -bSJ -bTo -bTO -bUq -bUM -bVl -bUM -bVW -bWm -bWF -bWF -bWF -bWF -bWF -bWF -bWm +bQy +bdL +bRK +bRY +bSI +bTn +bTN +bUp +bUL +bVk +bUL +bVV +bWl +bWE +bWE +bWE +bWE +bWE +bWE +bWl aab -bZA -cad -car -caM -bZA -cbt -bRJ -ccl -ccl -ccl -ccl -bRJ -cdH -cdP -cdU -ceb -ceq -ceG -ceq -cfe -cfr -cfF -cfQ -cga +bZz +cac +caq +caL +bZz +cbs +bRI +cck +cck +cck +cck +bRI +cdG +cdO +cdT +cea +cep +ceF +cep +cfd +cfq +cfE cfP -cfP -cgw -cgC +cfZ +cfO +cfO +cgv +cgB aab aab aaa @@ -88872,22 +88846,22 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aaa @@ -88992,158 +88966,158 @@ afr afr afr afr -ahl +ahn afr aab -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -axe -ayI -aAg -atP -atP -atP -atP -atP -aKD -aKD -aKD -aKD -aKD -aSR -aUz -aVz -aXm -aYv -aZM -baQ -baL -baL -beZ -aZM -bhN -bjj -bhN -blP -bnv -boK -bpU -baL -bsn -btC -buE -bvO -bxf -byo -bzw -bAx -bBu -bCu -bDn -bEn -bFl -bGj -bHr -bIv -bJl -bKf -bKZ -bLL -bMB -bNe -bNK -bOr -bOp -bOp -bPX -bQz -bdJ -bRL -bSa -bSK -bTp -bTP -bUr -bUN -bVm -bVG -bVX -bWm -bWm -bWm -bWm -bWm -bWm -bWm -bWm -bWm -bZA -cae -cau -caN -bZA -cbt -bWm -bWm -bWm -bWm -bWm -bWm -cdH -cdP -cdV -cec -cer -ceH -ceO -cff -cfs -cfG -cfR -cgb -cgh -cgq -cgx +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +axh +ayL +aAj +atS +atS +atS +atS +atS +aKG +aKG +aKG +aKG +aKG +aSU +aUC +aVB +aXo +aYx +aZO +baS +baN +baN +bfb +aZO +bhP +bjl +bhP +blR +bnx +boM +bpW +baN +bsp +btE +buF +bvP +bxg +byp +bzx +bAy +bBv +bCv +bDo +bEo +bFm +bGk +bHs +bIw +bJm +bKg +bLa +bLM +bMC +bNf +bNL +bOs +bOq +bOq +bPW +bQy +bdL +bRK +bRZ +bSJ +bTo +bTO +bUq +bUM +bVl +bVF +bVW +bWl +bWl +bWl +bWl +bWl +bWl +bWl +bWl +bWl +bZz +cad +cat +caM +bZz +cbs +bWl +bWl +bWl +bWl +bWl +bWl +cdG +cdO +cdU +ceb +ceq +ceG +ceN +cfe +cfr +cfF +cfQ +cga +cgg +cgp +cgw +cgC +aab +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD cgD -aab -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE aab aab aab @@ -89249,128 +89223,128 @@ aab aab aaa afr -ahm +aho afr aab -ajE -ajE -alr -amv -anp -aow -apH -aqU -aqU -aqU -ajE -axf -axf -axf -axf +ajG +ajG +alu +amy +ans +aoz +apK +aqX +aqX +aqX +ajG +axi +axi +axi +axi aaV abE -aHl -aHl -aHl -aHl -aHl -aHl -aHl -aSS -aUz -aVz -aXi -aVz -aZM -baR -bcm -bdM -bfa -bgo -bhP -bjl -bkr -blQ -bnw -boL -bpV -aZM -bso -btD -bso -bvN -bxg -byp -bzx -bAy -bBv -bCv -bDo -bEo -bFm -bGk -bHs -bIw -bJm -bKg -bLa -bLM -bMA -bMA -bMA +aHo +aHo +aHo +aHo +aHo +aHo +aHo +aSV +aUC +aVB +aXk +aVB +aZO +baT +bco +bdO +bfc +bgq +bhR +bjn +bkt +blS +bny +boN +bpX +aZO +bsq +btF +bsq +bvO +bxh +byq +bzy +bAz +bBw +bCw +bDp +bEp +bFn +bGl +bHt +bIx +bJn +bKh +bLb +bLN +bMB +bMB +bMB +bOr +bOr +bPw bOq -bOq -bPx -bOp -bQz -bdJ -bRM -bSb -bSL -bTq -bTQ -bUs -bUO -bVn -bVH -bVY -bWm -bWH -bWV -bXn -bXn -bYl -bYI -bYW -bZp -bZA -bZA -cav -bZA -bZA -cbu -bWm -ccm -ccH -cdd -cdm -bWm -cdI -cdQ -cdQ -ced -ces -cez -ceP -cfg -cdQ -cfH -ced -ceU -ceP -cdQ -cdQ +bQy +bdL +bRL +bSa +bSK +bTp +bTP +bUr +bUN +bVm +bVG +bVX +bWl +bWG +bWU +bXm +bXm +bYk +bYH +bYV +bZo +bZz +bZz +cau +bZz +bZz +cbt +bWl +ccl +ccG +cdc +cdl +bWl +cdH cdP +cdP +cec +cer +cey +ceO +cff +cdP +cfG +cec +ceT +ceO +cdP +cdP +cdO aab aab aab @@ -89388,19 +89362,19 @@ aab aab aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -89506,127 +89480,127 @@ aab aab aaa afr -ahn +ahp afr aab -ajE -ajE -als -amv -anq -aox -apI -aqU -aqU -aqU -ajE -axg -ayJ -aAh -aBA -aDq -aFn -aHm -aIH -aKE -aMp -aOc -aPK -aHl -aST -aUA -aVF -aXn -aYw -aZM -baS -bcn -bdN -bfb -bgp -bhQ -bjm -bks -blR -bjg -boM -bpW -aZM -bsp -btE -buF -bvN -bxh -byq -bzy -bAz -bBw -bCw -bDp -bEp -bFn -bGl -bHt -bFj -bJn -bKh -bKh -bLN -bIu -bNf -bIu -bOp -bOp -bOp -bOp -bQA -bdJ -bRL -bSc -bSM -bTr -bTR -bUt -bUP -bVl -bVI -bVl -bWm -bWI -bWW -bWW -bWW -bYm -bWW -bWW -bWW -bZC -caf -caw -caO -bWm -cbv -cbN -ccn -ccI -ccn -cdn -bWm -cdJ -cdQ -cdW -cee -cet -ceI -ceQ -cfh -cft -cfI -cfS -cgc -cgi -cgr -cgy +ajG +ajG +alv +amy +ant +aoA +apL +aqX +aqX +aqX +ajG +axj +ayM +aAk +aBD +aDt +aFq +aHp +aIK +aKH +aMs +aOf +aPN +aHo +aSW +aUD +aVH +aXp +aYy +aZO +baU +bcp +bdP +bfd +bgr +bhS +bjo +bku +blT +bji +boO +bpY +aZO +bsr +btG +buG +bvO +bxi +byr +bzz +bAA +bBx +bCx +bDq +bEq +bFo +bGm +bHu +bFk +bJo +bKi +bKi +bLO +bIv +bNg +bIv +bOq +bOq +bOq +bOq +bQz +bdL +bRK +bSb +bSL +bTq +bTQ +bUs +bUO +bVk +bVH +bVk +bWl +bWH +bWV +bWV +bWV +bYl +bWV +bWV +bWV +bZB +cae +cav +caN +bWl +cbu +cbM +ccm +ccH +ccm +cdm +bWl +cdI +cdP +cdV +ced +ces +ceH +ceP +cfg +cfs +cfH +cfR +cgb +cgh +cgq +cgx aab aab aab @@ -89641,19 +89615,19 @@ aaa aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -89762,128 +89736,128 @@ aab aab aab aab -agJ -aho -agJ +agL +ahq +agL aab -ajE -ajE -alt -amv -amv -amv -apI -amv -amv -atQ -ajE -axh -ayK -aAi -aBB -aDr -aFo -aHn -aII -aKF -aMq -aKF -aPL -aHl -amr -aUz -aVG -aXo -aVG -aZM -baT -bco -bdO -bco -bgq -bhR -bjn -bkt -blR -bjg -boN -bpX -aZM -bsq -btE -buG -bvN -bxi -byr -bzz -bAA -bBx -bCx -bDq -bEq -bFo -bGm -bHu -bFj -bJo -bKh -bKh -bLO -bIu -bIu -bIu -bIu -bIu -bIu -bIu -bIu -bRb -bRL -bSd -bSN -bRL -bTS -bRL -bUQ -bVo -bVJ -bVZ -bWm -bWm -bWX -bXo -bXo -bYn -bYJ -bYr -bYr -bZD -bYr -cax -caP -cbc -cbw -cbO -cco -ccJ -cde -cdo -cdB -cdK -cdR -cdX -cef -ceu -ceJ -ceR -cfi -cfu -cfJ -cfJ -cfJ -cgj -cgs -cgz +ajG +ajG +alw +amy +amy +amy +apL +amy +amy +atT +ajG +axk +ayN +aAl +aBE +aDu +aFr +aHq +aIL +aKI +aMt +aKI +aPO +aHo +amu +aUC +aVI +aXq +aVI +aZO +baV +bcq +bdQ +bcq +bgs +bhT +bjp +bkv +blT +bji +boP +bpZ +aZO +bss +btG +buH +bvO +bxj +bys +bzA +bAB +bBy +bCy +bDr +bEr +bFp +bGn +bHv +bFk +bJp +bKi +bKi +bLP +bIv +bIv +bIv +bIv +bIv +bIv +bIv +bIv +bRa +bRK +bSc +bSM +bRK +bTR +bRK +bUP +bVn +bVI +bVY +bWl +bWl +bWW +bXn +bXn +bYm +bYI +bYq +bYq +bZC +bYq +caw +caO +cbb +cbv +cbN +ccn +ccI +cdd +cdn +cdA +cdJ +cdQ +cdW +cee +cet +ceI +ceQ +cfh +cft +cfI +cfI +cfI +cgi +cgr +cgy aab aab aab @@ -89899,18 +89873,18 @@ aaa aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -90019,128 +89993,128 @@ aaa aab aab aab -agK -ahm -agK +agM +aho +agM aab -ajE -ajE -alu -amv -anr -aoy -apJ -aqV -ash -atR -avu -axi -ayL -aAj -aBC -aDs -aFp +ajG +ajG +alx +amy +anu +aoB +apM +aqY +ask +atU +avx +axl +ayO +aAm +aBF +aDv +aFs +aHr +aIL +aKJ +aMu +aOg +aPP aHo -aII -aKG -aMr -aOd -aPM -aHl -amr -aUz -aVH -aXp -aVH -aZM -baU -bcp -bdP -bfc -bgr -bhS -bjo -aZM -blS -bnx -aZM -aZM -aZM -bsr -bsf -buH -bvN -bxj -bys -bzA -bzA -bzA -bzA -bDr -bvN -bFp -bGn -bHv -bFj -bJp -bKi -bLb -bLP -bIu -bNg -btm -baK -bOV -baK -baK -btm -bAi -bRL -bSe -bSO -bSO -bTT -bUu -bSO -bSO -bSO -bSO -bWn +amu +aUC +aVJ +aXr +aVJ +aZO +baW +bcr +bdR +bfe +bgt +bhU +bjq +aZO +blU +bnz +aZO +aZO +aZO +bst +bsh +buI +bvO +bxk +byt +bzB +bzB +bzB +bzB +bDs +bvO +bFq +bGo +bHw +bFk +bJq +bKj +bLc +bLQ +bIv +bNh +bto +baM +bOU +baM +baM +bto +bAj +bRK +bSd +bSN +bSN +bTS +bUt +bSN +bSN +bSN +bSN bWm -bWY -bXp -bXN -bYo -bXT -bXp -bXp -bXp -bXp -bXp -caQ -bWm -cbx -cbP -ccp -ccK -ccn -cdp -bWm -cdL -cdQ -cdY -ceg -cev -ceg -ceS -ceS -cfv -cfK -ceS -ceS -cgk -cgt -cgz +bWl +bWX +bXo +bXM +bYn +bXS +bXo +bXo +bXo +bXo +bXo +caP +bWl +cbw +cbO +cco +ccJ +ccm +cdo +bWl +cdK +cdP +cdX +cef +ceu +cef +ceR +ceR +cfu +cfJ +ceR +ceR +cgj +cgs +cgy aab aab aab @@ -90156,18 +90130,18 @@ aaa aaa aab aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -90276,128 +90250,128 @@ aaa aab aab aab -agL -ahk -agL +agN +ahm +agN aab -ajE -ajE -ajE -ajE -ajE -aoz -apK -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -aDt -aFq -aHp -aIJ -aKH -aMs -aOe -aPN -aHl -aSU -aUB -aVI -aXq -aVI -aZM -aZM -bcq -bdQ -bfd -aZM -bhT -aYx -bku -blT -bny -boO -bpY -aZM -bso -btF -bso -bvN -bxk -aYx -bcr -aYx -bcr -aYx -bDs -bvN -bFj -bFj -bFj -bFj -bIu -bIu -bIu -bIu -bIu -bdJ -aLT -bMD -bMD -bMD -bMD -bQB -bMD -bRL -bSf -bSP -bTs -bTU -bTs -bUR -bVp -bVK -bWa -bWo -bWm -bWZ -bXq -bXO -bYp -bXT -bYX -bZq -bZE -cag -cag -caR -cbd -cby +ajG +ajG +ajG +ajG +ajG +aoC +apN +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +aDw +aFt +aHs +aIM +aKK +aMv +aOh +aPQ +aHo +aSX +aUE +aVK +aXs +aVK +aZO +aZO +bcs +bdS +bff +aZO +bhV +aYz +bkw +blV +bnA +boQ +bqa +aZO +bsq +btH +bsq +bvO +bxl +aYz +bct +aYz +bct +aYz +bDt +bvO +bFk +bFk +bFk +bFk +bIv +bIv +bIv +bIv +bIv +bdL +aLW +bME +bME +bME +bME +bQA +bME +bRK +bSe +bSO +bTr +bTT +bTr +bUQ +bVo +bVJ +bVZ +bWn +bWl +bWY +bXp +bXN +bYo +bXS +bYW +bZp +bZD +caf +caf +caQ +cbc +cbx +cbP cbQ -cbR -ccL -ccn -cdq -bWm -cdM -cdQ -cdQ -ceh -cew -ceK -ceS -ceS -cfv -ceS -cfT -cfL -cgl -cgu -cgA +ccK +ccm +cdp +bWl +cdL +cdP +cdP +ceg +cev +ceJ +ceR +ceR +cfu +ceR +cfS +cfK +cgk +cgt +cgz aab aab aab @@ -90412,19 +90386,19 @@ aaa aaa aaa aab -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE -cgE +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD +cgD aab aab aab @@ -90534,127 +90508,127 @@ aab aab aab afr -ahk +ahm afr aab -ajE -ajE -alv -amw -ans -aoA -apL -aqW -asi -atS -avv -axj -ayM -aAk -ajE -atX -aFr -aHq -aIK -aKI -aMt -aMu -aPO -aHl -aSU -aUB -aVJ -aXr -aYx -aZN -baV -bcr -aYx -bcr -bgs -bba -aYx -aYx -aYx -aYx -aYx -aYx -baV -bss -bcr -buI -bjr -aYx -aYx -aYx -aYx -bba -aYx -aYx -bEr -aZN -bGo -bHw -baW -bJq -baK -baK -baK -bMC -bCe -bly +ajG +ajG +aly +amz +anv +aoD +apO +aqZ +asl +atV +avy +axm +ayP +aAn +ajG +aua +aFu +aHt +aIN +aKL +aMw +aMx +aPR +aHo +aSX +aUE +aVL +aXt +aYz +aZP +baX +bct +aYz +bct +bgu +bbc +aYz +aYz +aYz +aYz +aYz +aYz +baX +bsu +bct +buJ +bjt +aYz +aYz +aYz +aYz +bbc +aYz +aYz +bEs +aZP +bGp +bHx +baY +bJr +baM +baM +baM bMD -bOW -bPy -bPY -bOY -bRc -bRL -bSg -bSQ -bTt -bTV -bTt -bUS -bVq -bVL -bWb -bTt -bWm -bWm +bCf +blA +bME +bOV +bPx +bPX +bOX +bRb +bRK +bSf +bSP +bTs +bTU +bTs +bUR +bVp +bVK +bWa +bTs +bWl +bWl +bXq +bXO +bYp +bYJ +bYX +bWl +bZE bXr -bXP -bYq -bYK -bYY -bWm -bZF -bXs -bXs -bXs -cbe -cby -cbR -ccq -ccL -ccn -cdr -bWm -cdN -bMj -cdQ -cei -cex -ceL -ceT -cfj -cfw -cfL -cfU -cgd -cgm -cdQ -cdQ +bXr +bXr +cbd +cbx +cbQ +ccp +ccK +ccm +cdq +bWl +cdM +bMk +cdP +ceh +cew +ceK +ceS +cfi +cfv +cfK +cfT +cgc +cgl +cdP +cdP aab aab aab @@ -90679,8 +90653,8 @@ aab aab aab aab -cgE -cgE +cgD +cgD aab aab aab @@ -90791,126 +90765,126 @@ aab aab aab afr -ahm +aho afr aab -ajE -ajE -alw -amv -ant -aoB -apM -aqX -asj -amv -amv -amv -amv -amv -aBD -aDr -aFr -aHr -aIL -aKJ -aMu -aMu -aPP -aHl -amr -aUB -aVK -aXs -aYy -aZO -baW -bcs -baW -baW -bgt -bhU -baW -baW -bgt -baW -baW -baW -baW -baW -baW -baW -baW -bcs -baW -baW -baW -bBy -baW -baW -baW -bFq -baW -bHx -bIx -bJr -bJr -bJr -bJr -bMD -bMD -bMD -bMD +ajG +ajG +alz +amy +anw +aoE +apP +ara +asm +amy +amy +amy +amy +amy +aBG +aDu +aFu +aHu +aIO +aKM +aMx +aMx +aPS +aHo +amu +aUE +aVM +aXu +aYA +aZQ +baY +bcu +baY +baY +bgv +bhW +baY +baY +bgv +baY +baY +baY +baY +baY +baY +baY +baY +bcu +baY +baY +baY +bBz +baY +baY +baY +bFr +baY +bHy +bIy +bJs +bJs +bJs +bJs +bME +bME +bME +bME +bOW +bPy +bPY bOX -bPz -bPZ -bOY -bRd -bRL -bSh -bSQ -bTt -bTW -bTt -bUS -bVr -bVM -bWc -bTt -bWm -bXa -bXs -bXQ -bXQ -bXT -bXs -bZr -bZG -cah -cay -caS -cbf -cby -cbR -ccr -ccM -cdf -cds -bWm -cdN -bMj -cdQ -cej -ced -cez -ceU -ceP -cfx -cfM -ceU -cge -cgn -cdQ +bRc +bRK +bSg +bSP +bTs +bTV +bTs +bUR +bVq +bVL +bWb +bTs +bWl +bWZ +bXr +bXP +bXP +bXS +bXr +bZq +bZF +cag +cax +caR +cbe +cbx +cbQ +ccq +ccL +cde +cdr +bWl +cdM +bMk +cdP +cei +cec +cey +ceT +ceO +cfw +cfL +ceT +cgd +cgm +cdP aab aab aab @@ -91048,126 +91022,126 @@ aab aab aab afr -ahm +aho afr aab -ajE -ajE -alx -amv -amv -amv -apI -aqY -asj -atT -amv -amv -amv -amv -aBE -aDu -aFs -aHs -aIM -aKK -aMv -aOf -aPQ -aHl -amr -aUB -aVL -aXr -aYx -aZP -aYx -bct -bdR -bfe -aYx -bhV -aYx -bfe -bdR -bfe -aYx -bpZ -aYx -aYx -btG -aYx -bdR -bxl -aYx -aYx -aYx -blU -bdR -aYx -aYx -aVI -aYx -bHy -bIy -bJr -bKj -bLc -bLQ -bMD -bNh -bNL -bOs -bOY -bPA -bOY -bQC -bRe -bRL -bSh -bSQ -bTu -bTW -bUv -bUT -bVs -bVN -bWb -bWp -bWm -bXb -bXp -bXR -bYr -bYL -bYZ -bWm -bWm -bWm -bWm -bWm -bWm -bWm -cbS -bWm -cbS -bWm -cbS -bWm -cdN -bMj -cdQ -cek -cey -cey -ceV -cfk -cfy -cey -cey -cey -cgo -cdQ +ajG +ajG +alA +amy +amy +amy +apL +arb +asm +atW +amy +amy +amy +amy +aBH +aDx +aFv +aHv +aIP +aKN +aMy +aOi +aPT +aHo +amu +aUE +aVN +aXt +aYz +aZR +aYz +bcv +bdT +bfg +aYz +bhX +aYz +bfg +bdT +bfg +aYz +bqb +aYz +aYz +btI +aYz +bdT +bxm +aYz +aYz +aYz +blW +bdT +aYz +aYz +aVK +aYz +bHz +bIz +bJs +bKk +bLd +bLR +bME +bNi +bNM +bOt +bOX +bPz +bOX +bQB +bRd +bRK +bSg +bSP +bTt +bTV +bUu +bUS +bVr +bVM +bWa +bWo +bWl +bXa +bXo +bXQ +bYq +bYK +bYY +bWl +bWl +bWl +bWl +bWl +bWl +bWl +cbR +bWl +cbR +bWl +cbR +bWl +cdM +bMk +cdP +cej +cex +cex +ceU +cfj +cfx +cex +cex +cex +cgn +cdP aab aab aab @@ -91305,126 +91279,126 @@ aab aab aab afr -ahp +ahr afr aab -ajE -ajE -alw -amv -amv -amv -apN -aqZ -ask -atU -avw -amv -amv -amv -aBE -aDr -aFr -aHt -aHt -aHt -aHt -aHt -aHt -aHt -aSV -aHt -aVM -aXr -aYz -aUB -baX -bcu -bdS -bff -bgu -aUB -bgu -bcu -bdS -bff -baX -aUB -bqX -bst -aZQ -buJ -bvP -aZQ -buJ -bzB -bvP -aZQ -buJ -bzB -bvP -aZQ -bGp -bHz -bIz -bJs -bKk -bLd -bLR -bMD -bNi -bNL -bOt -bOZ -bPB -bQa -bQD -bRf -bRL -bSh +ajG +ajG +alz +amy +amy +amy +apQ +arc +asn +atX +avz +amy +amy +amy +aBH +aDu +aFu +aHw +aHw +aHw +aHw +aHw +aHw +aHw +aSY +aHw +aVO +aXt +aYB +aUE +baZ +bcw +bdU +bfh +bgw +aUE +bgw +bcw +bdU +bfh +baZ +aUE +bqZ +bsv +aZS +buK +bvQ +aZS +buK +bzC +bvQ +aZS +buK +bzC +bvQ +aZS +bGq +bHA +bIA +bJt +bKl +bLe +bLS +bME +bNj +bNM +bOu +bOY +bPA +bPZ +bQC +bRe +bRK +bSg +bSP +bTu +bTV +bTs +bUT +bVs +bVs bSQ -bTv -bTW -bTt -bUU -bVt -bVt -bSR -bTt -bWm -bXc -bXt -bXS -bYo -bXp -bZa -bWm +bTs +bWl +bXb +bXs +bXR +bYn +bXo +bYZ +bWl aab aab aab -bMj -cbg -bQO -cbT -ccs -ccN -bML -bML -bML -cdO -bMj -cdQ -cel -cez -cez -cez -cfl -cdQ -cel -cez -cez -cfl -cdQ +bMk +cbf +bQN +cbS +ccr +ccM +bMM +bMM +bMM +cdN +bMk +cdP +cek +cey +cey +cey +cfk +cdP +cek +cey +cey +cfk +cdP aab aaa aaa @@ -91562,114 +91536,114 @@ aab aab aab afr -ahm +aho afr aab -ajE -ajE -aly -amx +ajG +ajG +alB +amA +anx +aoF anu -aoC -anr -ara -asl -atV -avx -axk -avx -avx -ajE -aDv -aFt -aHt -aIN -aKL -aMw -aOg -aPR -aRx -aSW -aHt -aVN -aXr -aYx -aUB -baY -bcv -bcv -bcv -bgv -bhW -bjp -bcv -bcv -bcv -boP -aUB -aYx -aYx -btH -buK -buK -buK -buK -buK -buK -buK -buK -buK -buK -btH -aYx -bHA -bIA -bJr -bKl -bLe -bKj -bMD -bNj -bNL -bOu -bPa -bPC -bQb -bQb -bRg -bRL -bSi -bSR -bTw -bTX -bUw -bTt -bVu -bTt -bTt -bWq -bWm -bXd -bXu -bXT -bXp -bYM -bZb -bWm -bPH -bPH -bPH -bMj -cbh -cbz -cbU -cct -ccO -bMj -bMj -bMj -bMj -bMj +ard +aso +atY +avA +axn +avA +avA +ajG +aDy +aFw +aHw +aIQ +aKO +aMz +aOj +aPU +aRA +aSZ +aHw +aVP +aXt +aYz +aUE +bba +bcx +bcx +bcx +bgx +bhY +bjr +bcx +bcx +bcx +boR +aUE +aYz +aYz +btJ +buL +buL +buL +buL +buL +buL +buL +buL +buL +buL +btJ +aYz +bHB +bIB +bJs +bKm +bLf +bKk +bME +bNk +bNM +bOv +bOZ +bPB +bQa +bQa +bRf +bRK +bSh +bSQ +bTv +bTW +bUv +bTs +bVt +bTs +bTs +bWp +bWl +bXc +bXt +bXS +bXo +bYL +bZa +bWl +bPG +bPG +bPG +bMk +cbg +cby +cbT +ccs +ccN +bMk +bMk +bMk +bMk +bMk aab aab aab @@ -91818,111 +91792,111 @@ aaa aab aab aab -agJ -aho -agJ +agL +ahq +agL aab -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -aDw -aFr -aHt -aIO -aKM -aKM -aOh -aKM -aKM -aSW -aHt -aVO -aXr -aYz -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -bqY -aYz -aZQ -buK -buK -buK -buK -buK -buK -buK -buK -buK -buK -aZQ -bGq -bHB -bIB -bJr -bJr -bJr -bJr -bMD -bMD -bMD -bMD -bPb -bPD -bQc -bMD -bMD -bRL -bSj -bSS -bTx -bRL -bUx -bUV -bUV -bUV -bUV -bWr -bWm -bXe -bXv -bXU -bYs -bXe -bXv -bWm -bZH -bZH -bZH -bMj -cbi -cbA -cbV -ccu -ccP -bMj +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +aDz +aFu +aHw +aIR +aKP +aKP +aOk +aKP +aKP +aSZ +aHw +aVQ +aXt +aYB +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +bra +aYB +aZS +buL +buL +buL +buL +buL +buL +buL +buL +buL +buL +aZS +bGr +bHC +bIC +bJs +bJs +bJs +bJs +bME +bME +bME +bME +bPa +bPC +bQb +bME +bME +bRK +bSi +bSR +bTw +bRK +bUw +bUU +bUU +bUU +bUU +bWq +bWl +bXd +bXu +bXT +bYr +bXd +bXu +bWl +bZG +bZG +bZG +bMk +cbh +cbz +cbU +cct +ccO +bMk aaa aaa aaa @@ -92075,111 +92049,111 @@ aaa aaa aab aab -agK -ahk -agK +agM +ahm +agM aab -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ajE -ahr -atW -avy -axl -ayN -aAl -aBF -aDx -aFu -aHu -aIP -aIP -aIP -aOi -aIP -aIP -aSX -aUC -aVP -aXt -aYA -aZQ -baZ -baZ -baZ -baZ -bgw -aZQ -bjq -bjq -bjq -bjq -boQ -aZQ -bqZ -aYx -btI -buK -buK -buK -buK -buK -buK -buK -buK -buK -buK -bFr -aYx -bHC -aYx -aVI -bKm -bLf -bLS -bME -bNk -bNM -bOv -bLU -bPE -bLU -bQE -bRh -bRN -bSk -bST -bTy -bLf -bLU -bLU -bVv -bLU -bLU -bWs -bWJ -bLU -bXw -bXV -bYt -bYN -bZc -bZs -bZI -cai -cai -bMj -bPO -bPL -cbW -bRz -ccQ -bMj +ajG +ajG +ajG +ajG +ajG +ajG +ajG +ajG +aht +atZ +avB +axo +ayQ +aAo +aBI +aDA +aFx +aHx +aIS +aIS +aIS +aOl +aIS +aIS +aTa +aUF +aVR +aXv +aYC +aZS +bbb +bbb +bbb +bbb +bgy +aZS +bjs +bjs +bjs +bjs +boS +aZS +brb +aYz +btK +buL +buL +buL +buL +buL +buL +buL +buL +buL +buL +bFs +aYz +bHD +aYz +aVK +bKn +bLg +bLT +bMF +bNl +bNN +bOw +bLV +bPD +bLV +bQD +bRg +bRM +bSj +bSS +bTx +bLg +bLV +bLV +bVu +bLV +bLV +bWr +bWI +bLV +bXv +bXU +bYs +bYM +bZb +bZr +bZH +cah +cah +bMk +bPN +bPK +cbV +bRy +ccP +bMk aaa aaa aaa @@ -92332,9 +92306,9 @@ aaa aaa aaa aab -agL -ahm -agL +agN +aho +agN aab aab aaa @@ -92345,98 +92319,98 @@ aaa aaa aaa aaV -atX -avz -axm -ayO -aAm -aBG -aDy -aFv -aHv -aIQ -aKN -aKN -aOj -aKN -aKN -aSY -aUD -aVQ -aXt -aYB -aZQ -baZ -baZ -baZ -baZ -baZ -aZQ -bjq -bjq -bjq -bjq -bjq -aZQ -bra -bsu -aZQ -buK -buK -buK -buK -buK -buK -buK -buK -buK -buK -bFs -aYx -bHD -bGs -bJt -bKn -bLg -bLT -bLT -bLT -bNN -bOw -bLT -bPF -bQd -bQd -bRi -bQd -bSl -bSU -bQd -bTY -bQd -bSU -bQd -bQd -bWd -bQd -bRi -bQd -bQd -bXW -bYu +aua +avC +axp +ayR +aAp +aBJ +aDB +aFy +aHy +aIT +aKQ +aKQ +aOm +aKQ +aKQ +aTb +aUG +aVS +aXv +aYD +aZS +bbb +bbb +bbb +bbb +bbb +aZS +bjs +bjs +bjs +bjs +bjs +aZS +brc +bsw +aZS +buL +buL +buL +buL +buL +buL +buL +buL +buL +buL +bFt +aYz +bHE +bGt +bJu +bKo +bLh bLU bLU -bZt -bZJ -bZJ -caz -caT -bPO -cbB -cbX -cbX -cbX -cbX +bLU +bNO +bOx +bLU +bPE +bQc +bQc +bRh +bQc +bSk +bST +bQc +bTX +bQc +bST +bQc +bQc +bWc +bQc +bRh +bQc +bQc +bXV +bYt +bLV +bLV +bZs +bZI +bZI +cay +caS +bPN +cbA +cbW +cbW +cbW +cbW aaa aaa aaa @@ -92590,7 +92564,7 @@ aad aad aaa afr -aho +ahq afr aab aab @@ -92602,98 +92576,98 @@ aaa aaa aaa aaV -atY -avA -axn -ayP -aAn -aBH -aDz -aFw -aHw -aIR -aIR -aMx -aOk -aPS -aRy -aSZ -aUC -aVP -aXt -aYC -aZQ -baZ -bcw -baZ -bfg -baZ -aZQ -bjq -bkv -bjq -bnz -bjq -aZQ -brb -aYx -btI -buK -buK -buK -buK -buK -buK -buK -buK -buK -buK -btI -aYx -bHE -aYx -aVI -bKm -bLf -bLU -bLU -bLU -bNO -bOx -bPc -bPG -bLU -bLU -bLU -bLU -bLU -bSV -bLU -bLf -bUy -bSV -bLU -bRj -bWe -bRj -bRj -bRj -bXx -bXX -bNO -bYO -bZd -bZs -bZK -caj -caj -bMj -cbj -cbB -cbY -ccv -ccR -cdg +aub +avD +axq +ayS +aAq +aBK +aDC +aFz +aHz +aIU +aIU +aMA +aOn +aPV +aRB +aTc +aUF +aVR +aXv +aYE +aZS +bbb +bcy +bbb +bfi +bbb +aZS +bjs +bkx +bjs +bnB +bjs +aZS +brd +aYz +btK +buL +buL +buL +buL +buL +buL +buL +buL +buL +buL +btK +aYz +bHF +aYz +aVK +bKn +bLg +bLV +bLV +bLV +bNP +bOy +bPb +bPF +bLV +bLV +bLV +bLV +bLV +bSU +bLV +bLg +bUx +bSU +bLV +bRi +bWd +bRi +bRi +bRi +bXw +bXW +bNP +bYN +bZc +bZr +bZJ +cai +cai +bMk +cbi +cbA +cbX +ccu +ccQ +cdf aaa aaa aaa @@ -92847,7 +92821,7 @@ aah aad aad aad -ahq +ahs aad aad aab @@ -92859,98 +92833,98 @@ aaa aaV aaV aaV -atZ -avB -axo -atZ -avB +auc +avE +axr +auc +avE aaV -aDA -aFx -aHt -aIS -aKM -aKM -aKM -aPT -aRz -aTa -aHt -aVR -aXt -aYD -aZQ -baZ -baZ -baZ -baZ -baZ -aZQ -bjq -bjq -bjq -bjq -bjq -aZQ -brc -aYD -aZQ -buK -buK -buK -buK -buK -buK -buK -buK -buK -buK -aZQ -bGr -bHF -aYC -bJu -bJu -bJu -bJu -bJu -bNl -bJu -bJu -bJu -bPH -bPH -bQF -bRj -bRj -bRj -bRj -bTz -bPH -bUz -bUz -bVw -bVO -bWf -bWt -bVO -bVO -bUz -bUz -bUz -bUz -bUz -bUz -bZL -bZL -bZL -bMj -cbk -cbC -cbZ -ccw -ccS +aDD +aFA +aHw +aIV +aKP +aKP +aKP +aPW +aRC +aTd +aHw +aVT +aXv +aYF +aZS +bbb +bbb +bbb +bbb +bbb +aZS +bjs +bjs +bjs +bjs +bjs +aZS +bre +aYF +aZS +buL +buL +buL +buL +buL +buL +buL +buL +buL +buL +aZS +bGs +bHG +aYE +bJv +bJv +bJv +bJv +bJv +bNm +bJv +bJv +bJv +bPG +bPG +bQE +bRi +bRi +bRi +bRi +bTy +bPG +bUy +bUy +bVv +bVN +bWe +bWs +bVN +bVN +bUy +bUy +bUy +bUy +bUy +bUy +bZK +bZK +bZK +bMk +cbj cbB +cbY +ccv +ccR +cbA aaa aaa aaa @@ -93104,7 +93078,7 @@ aah acV aah aaH -agb +agc aae aad aab @@ -93114,100 +93088,100 @@ aaa aaa aaa aaV -arb -asm -aua -avC -axp -ayQ -aAo +are +asp +aud +avF +axs +ayT +aAr aaV -aDB -aFy -ahr -aIT -aKO -aMy -aOl -ahr -aRA -aTb -aHt -aVS -aXt -aYx -aZQ -baZ -baZ -baZ -baZ -baZ -aZQ -bjq -bjq -bjq -bjq -bjq -aZQ -aYx -aYx -btH -buK -buK -buK -buK -buK -buK -buK -buK -buK -buK -bFs -aYx -bHG -aYx -bJu -bKo -bLh -bLV -bMF -bKq -bJu -bOy -bOy -bPI -bPI -bQG -bRk -bRk -bRk -bSW -bPI -bPI -bUA +aDE +aFB +aht +aIW +aKR +aMB +aOo +aht +aRD +aTe +aHw +aVU +aXv +aYz +aZS +bbb +bbb +bbb +bbb +bbb +aZS +bjs +bjs +bjs +bjs +bjs +aZS +aYz +aYz +btJ +buL +buL +buL +buL +buL +buL +buL +buL +buL +buL +bFt +aYz +bHH +aYz +bJv +bKp +bLi +bLW +bMG +bKr +bJv +bOz +bOz +bPH +bPH +bQF +bRj +bRj +bRj +bSV +bPH +bPH bUz -bUz -bVP -bWg -bWu -bVP -bVP -bUz -bXY -bYv -bYP -bZe -bUz -bUz -bUz -bUz -bMj -bPO -cbB -cca -ccx -ccT -cbB +bUy +bUy +bVO +bWf +bWt +bVO +bVO +bUy +bXX +bYu +bYO +bZd +bUy +bUy +bUy +bUy +bMk +bPN +cbA +cbZ +ccw +ccS +cbA aaa aaa aab @@ -93363,7 +93337,7 @@ abi abk aaC aah -aiV +aiX aaa aab aaa @@ -93371,100 +93345,100 @@ aaa aaa aaa aaV -arc +arf abD -aub -avD -axq +aue +avG +axt abD -aAp +aAs aaV -aDC -aFx -aHx -aIU -aKP -aMz -aOm -ahr -aRB -aTc -aHt -aVT -aXt +aDF +aFA +aHA +aIX +aKS +aMC +aOp +aht +aRE +aTf +aHw +aVV +aXv +aYB +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +aZS +bqZ +bsv +aZS +buK +bvQ +aZS +buK +bzC +bvQ +aZS +buK +bzC +bvQ +aZS aYz -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -aZQ -bqX -bst -aZQ -buJ -bvP -aZQ -buJ -bzB -bvP -aZQ -buJ -bzB -bvP -aZQ -aYx -bHH -bIz -bJv -bKp -bLi -bLW -bMG -bLW -bNP -bOz -bPd -bPI -bQe -bQH -bRl -bRl -bRl -bSX -bTA -bTZ -bUB -bUW -bVx -bVa -bWh -bVa -bVa -bVa -bXy -bVa -bVa -bVa -bZf -bVa -bVa -bVa -caA -caU -bPQ -cbB -ccb -ccy -ccU -cbB +bHI +bIA +bJw +bKq +bLj +bLX +bMH +bLX +bNQ +bOA +bPc +bPH +bQd +bQG +bRk +bRk +bRk +bSW +bTz +bTY +bUA +bUV +bVw +bUZ +bWg +bUZ +bUZ +bUZ +bXx +bUZ +bUZ +bUZ +bZe +bUZ +bUZ +bUZ +caz +caT +bPP +cbA +cca +ccx +ccT +cbA aaa aaa aab @@ -93616,114 +93590,114 @@ aad aad aad aad -agl +agm aaI aaA aah -aiV -aiV -aiV -aiV -amy -aiV -aiV +aiX +aiX +aiX +aiX +amB +aiX +aiX aaV -ard -asn -auc +arg +asq +auf aaV -axr -ard -asn +axu +arg +asq aaV -aDD -aFz -aHy -aIV -aKQ +aDG +aFC +aHB +aIY +aKT abC -aOn -ahr -aRC -aTd -aHt -aVU -aXt -aYx -aZR -bba -bcx -bdT -bfh -aYx -bcx -bjr -bcx -bdT -bnA -aYx -bqa -aYx -aYx -btJ -aYx -bdT -bxm -aYx -aYx -aYx -aVI -bdT -aYx -aYx -bFt -aYx -bHG -bIC -bJu -bKq -bLj -bKq -bMH -bKq -bJu -bOA -bPe -bPI -bQf -bQI -bRm -bRp -bRp -bSY +aOq +aht +aRF +aTg +aHw +aVW +aXv +aYz +aZT +bbc +bcz +bdV +bfj +aYz +bcz +bjt +bcz +bdV +bnC +aYz +bqc +aYz +aYz +btL +aYz +bdV +bxn +aYz +aYz +aYz +aVK +bdV +aYz +aYz +bFu +aYz +bHH +bID +bJv +bKr +bLk +bKr +bMI +bKr +bJv +bOB +bPd +bPH +bQe +bQH +bRl bRo -bUa +bRo +bSX +bRn +bTZ +bUA bUB -bUC -bVy -bVa -bWi -bUE -bUE -bUE -bXz -bXZ -bYw -bYw -bZg -bVa -bZM -bZM -bUz -caV -bPK -cbD -ccc -ccz -ccV -cdh +bVx +bUZ +bWh +bUD +bUD +bUD +bXy +bXY +bYv +bYv +bZf +bUZ +bZL +bZL +bUy +caU +bPJ +cbC +ccb +ccy +ccU +cdg aaa -cdC +cdB aab aab aab @@ -93873,8 +93847,8 @@ acz acz aaT aaT -agm -agM +agn +agO aad aah aah @@ -93885,100 +93859,100 @@ aah abG aah aaV -are -aso -aud +arh +asr +aug aaV -axs -ayR -aAq +axv +ayU +aAt aaV -aDE -aFA -aHz -aIW -aKR +aDH +aFD +aHC +aIZ +aKU abC -aOo -ahr -aRD -aTc -aHt -aVV -aXu -aYE -aZS -bbb -bcy -bcy -bfi -bcy -bcy -bcy -bcy -bcy -bcy -bcy -bcy -bcy -bcy -bbb -bcy -bvQ -bxn -bcy -bcy -bcy -bBz -bcy -bDt -bEs -bFu -bGs -bHI -aYx -bJu -bKr -bJu -bLX -bJu -bNm -bJu -bJu -bJu -bPI -bQg -bQI -bRn -bRO -bSm -bSZ -bTB -bUb +aOr +aht +aRG +aTf +aHw +aVX +aXw +aYG +aZU +bbd +bcA +bcA +bfk +bcA +bcA +bcA +bcA +bcA +bcA +bcA +bcA +bcA +bcA +bbd +bcA +bvR +bxo +bcA +bcA +bcA +bBA +bcA +bDu +bEt +bFv +bGt +bHJ +aYz +bJv +bKs +bJv +bLY +bJv +bNn +bJv +bJv +bJv +bPH +bQf +bQH +bRm +bRN +bSl +bSY +bTA +bUa +bUA bUB -bUC -bVy -bVa -bWh -bWv -bWK -bXf -bXA -bWv -bWK -bXf -bVa -bVa -bZN -cak -bUz -bPO -bPL -cbE -ccd -ccf -ccd -cdh +bVx +bUZ +bWg +bWu +bWJ +bXe +bXz +bWu +bWJ +bXe +bUZ +bUZ +bZM +caj +bUy +bPN +bPK +cbD +ccc +cce +ccc +cdg aaa aab aab @@ -94142,100 +94116,100 @@ aae aah abG aaV -arf -asp -aue +ari +ass +auh aaV -axt -ayS -aAr +axw +ayV +aAu aaV -aDz -aFx -aHA -aIX -aKS -avC -aOp -ahr -aRE -aTe -aHt -aVW -aXt -aYF -aZT -aYx -bcz -bdU -bfj -aYx -bcz -aYx -bcz -blU -bcz -aYx -bcz -aYx -bcz -aYx -buL -bvR -bxo -byt -bzC -bAB -bBA -bCy -aXt -bEt -aYx -bGt -aYx -aYx -bJu -bKs -bJu -bKs -bJu -bNn -bJu -bOB -bOB -bPI -bQh -bQI -bRo -bRo -bRo -bTa -bTC -bUc -bUC -bUX -bVy -bVa -bWh -bWv -bWL -bXf -bXA -bWv -bWL -bXf -bVa -bVa -bZO -bZO -bUz -caW -bPL -cbE +aDC +aFA +aHD +aJa +aKV +avF +aOs +aht +aRH +aTh +aHw +aVY +aXv +aYH +aZV +aYz +bcB +bdW +bfl +aYz +bcB +aYz +bcB +blW +bcB +aYz +bcB +aYz +bcB +aYz +buM +bvS +bxp +byu +bzD +bAC +bBB +bCz +aXv +bEu +aYz +bGu +aYz +aYz +bJv +bKt +bJv +bKt +bJv +bNo +bJv +bOC +bOC +bPH +bQg +bQH +bRn +bRn +bRn +bSZ +bTB +bUb +bUB +bUW +bVx +bUZ +bWg +bWu +bWK +bXe +bXz +bWu +bWK +bXe +bUZ +bUZ +bZN +bZN +bUy +caV +bPK +cbD +ccd cce -ccf -ccW -cdh +ccV +cdg aab aab aab @@ -94387,112 +94361,112 @@ aeq aeY aft afL -agn +ago abC -ahr -ahr -ahr -ahr -ahr +aht +aht +aht +aht +aht aah -ahr -ahr -ahr +aht +aht +aht aaV aaV +ast +aui +aaV +axx +arg asq -auf aaV -axu -ard -asn -aaV -aDz -aFx -aHB -aIY +aDC +aFA +aHE +aJb aez -aMA -aOq -ahr -aRF -aTf -aPU -aVI -aXq -aYG -aUB -aUB -aUB -bdV -bfk -bgx -bdV -bjs -bkw -bdV -bnB -boR -bdV -brd -bsv -bdV -buM -bvS -buM -bxs -bxs -bAC -bxs -aVI -aXq -bEu -bFv -bFv -bFv -bFv -bFv -bFv -bFv -bFv -bFv -bFv -bFv -bFv -bFv -bPI -bQi -bQI -bRp -bRp -bSn -bTb -bTD -bUd +aMD +aOt +aht +aRI +aTi +aPX +aVK +aXs +aYI +aUE +aUE +aUE +bdX +bfm +bgz +bdX +bju +bky +bdX +bnD +boT +bdX +brf +bsx +bdX +buN +bvT +buN +bxt +bxt +bAD +bxt +aVK +aXs +bEv +bFw +bFw +bFw +bFw +bFw +bFw +bFw +bFw +bFw +bFw +bFw +bFw +bFw +bPH +bQh +bQH +bRo +bRo +bSm +bTa +bTC +bUc +bUC +bUX +bVy bUD -bUY -bVz -bUE -bWj -bWv -bWK -bXf -bXA -bWv -bWK -bXf -bVa -bVa -bZM -bZM -bUz -bPO -bPL -cbE -ccf -ccf -ccf -cdh +bWi +bWu +bWJ +bXe +bXz +bWu +bWJ +bXe +bUZ +bUZ +bZL +bZL +bUy +bPN +bPK +cbD +cce +cce +cce +cdg aab aab aab @@ -94644,114 +94618,114 @@ aer aeZ afu afM -ago -agN +agp +agP aaV -aie -aiW -ajF -ahr +aig +aiY +ajH +aht aah -ahr -aie -aoD -ajF +aht +aig +aoG +ajH aaV -asr -aug -avE -aug -aug -aug -aBI -aDF -aFB -aHC -aIY -aKT -aMB -aOr -ahr -aRG -aTg -aPU -aVX -aXv -aYH -auy +asu +auj +avH +auj +auj +auj +aBL +aDI +aFE +aHF +aJb +aKW +aME +aOu +aht +aRJ +aTj +aPX +aVZ +aXx +aYJ +auB aab aab -bdV -bfl -bgy -bhX -bjt -bkx -bdV -bnC -bjt -bhX -bgy -bsw -bdV -buN -bvT -bvW -byu -bzD -bAD -bxs -bCz -bDu -bEt +bdX +bfn +bgA +bhZ +bjv +bkz +bdX +bnE +bjv +bhZ +bgA +bsy +bdX +buO +bvU +bvX +byv +bzE +bAE +bxt +bCA +bDv +bEu +bFx +bGv +bHK +bIE +bJx +bKu +bLl +bLZ +bMJ +bGB +bGB +bOD bFw -bGu -bHJ -bID -bJw -bKt -bLk -bLY -bMI -bGA -bGA -bOC -bFv -bPI -bQj -bQI -bRq -bRP -bSo -bTc -bTE -bUe -bUE +bPH +bQi +bQH +bRp +bRO +bSn +bTb +bTD +bUd +bUD +bUY +bVz bUZ -bVA -bVa -bWk -bVa -bWM -bVa -bXB -bYa -bYa -bYa -bYa -bZu -bZN -cal -bUz -bPO -bPL -cbE -cbE -ccA -cbE -cdh -cdt -cdD +bWj +bUZ +bWL +bUZ +bXA +bXZ +bXZ +bXZ +bXZ +bZt +bZM +cak +bUy +bPN +bPK +cbD +cbD +ccz +cbD +cdg +cds +cdC aab aab aab @@ -94901,114 +94875,114 @@ aes afa afv afN -agp +agq abC aaV -aif -aiX -ajG -ahr +aih +aiZ +ajI +aht abG -ahr -aif -aoE -ajG +aht +aih +aoH +ajI aaV -ass -auh -avF -avF -ayT -aAs -aBJ -aDG -aFC -aHD -aIZ +asv +auk +avI +avI +ayW +aAv +aBM +aDJ +aFF +aHG +aJc aaV aaV aaV -ahr -aRH -aTh -aPU -aHS -aXw -aYI -auy +aht +aRK +aTk +aPX +aHV +aXy +aYK +auB aab aab -bdV -bfm -bgz -bgz -bgz -bky -bdV -bnD -bgz -bgz -bgz -bsx -bdV -buO -bvT -bxp -byv -bxs -bAE -bxs -bCA -aXt -bEt -bFx -bGv -bHK -bGA -bGA -bKu -bGA -bLZ -bLZ -bLZ -bHO -bOD -bFv -bPI -bQk -bQJ -bRr -bRQ -bSp -bTd -bTF -bUf -bUF -bVa -bVa -bVa -bWk -bVa -bVa -bVa -bXA -bVa -bVa -bVa -bVa -bVa -bZO -bZO -bUz -bPO -cbl -cbF -ccg -cbD +bdX +bfo +bgB +bgB +bgB +bkA +bdX +bnF +bgB +bgB +bgB +bsz +bdX +buP +bvU +bxq +byw +bxt +bAF +bxt +bCB +aXv +bEu +bFy +bGw +bHL +bGB +bGB +bKv +bGB +bMa +bMa +bMa +bHP +bOE +bFw +bPH +bQj +bQI +bRq +bRP +bSo +bTc +bTE +bUe +bUE +bUZ +bUZ +bUZ +bWj +bUZ +bUZ +bUZ +bXz +bUZ +bUZ +bUZ +bUZ +bUZ +bZN +bZN +bUy +bPN +cbk cbE -cdi -cdu -cdE +ccf +cbC +cbD +cdh +cdt +cdD aab aab aab @@ -95162,110 +95136,110 @@ aaV aaV aaV aaV -aiY +aja aaV -ahr +aht abE -ahr +aht aaV -aoF +aoI aaV aaV -ast -aui -avG -avG -ayU -aAt -aAt -aAt -aAt -aAt -aJa -aAt -aMC -aOs -aPU -aPU -aTi -aPU -axP -aLc -aYJ -aZU -aZU -aZU -bdV -bfn -bgA -bhY -bju -bdV -bdV -bdV -boS -bhY -bre -bsy -bdV -buP -bvU -bvW -byw -bxs -bAF -bxs -bCB -bDv -bEv -bFv -bGw -bHK -bIE -bJx -bKu -bLl -bMa -bMJ -bNo -bNQ -bOE -bFv -bPI -bPI -bPI -bRs -bPI -bPI -bPI -bPI -bPI -bUz -bVb -bVB -bVQ -bWl -bWw -bWw -bWw -bXC -bWw -bWw -bWw -bVB -bZv -bZP -bUz -bUz -caX -bML -bML -bML -ccB -bMj -cbE -cdv -cdF +asw +aul +avJ +avJ +ayX +aAw +aAw +aAw +aAw +aAw +aJd +aAw +aMF +aOv +aPX +aPX +aTl +aPX +axS +aLf +aYL +aZW +aZW +aZW +bdX +bfp +bgC +bia +bjw +bdX +bdX +bdX +boU +bia +brg +bsA +bdX +buQ +bvV +bvX +byx +bxt +bAG +bxt +bCC +bDw +bEw +bFw +bGx +bHL +bIF +bJy +bKv +bLm +bMb +bMK +bNp +bNR +bOF +bFw +bPH +bPH +bPH +bRr +bPH +bPH +bPH +bPH +bPH +bUy +bVa +bVA +bVP +bWk +bWv +bWv +bWv +bXB +bWv +bWv +bWv +bVA +bZu +bZO +bUy +bUy +caW +bMM +bMM +bMM +ccA +bMk +cbD +cdu +cdE aab aab acs @@ -95416,111 +95390,111 @@ afb afw afP afb -agO -ahs -aig +agQ +ahu +aii aeu -ajH +ajJ afb -alz +alC afb afb -aoG -aig -arg -asu -aui -avG -avG -ayV -aAu -aBK -aDH -aFD -aHE -aJb -aAt -aMD -avK -avK -avK -aTj -aPU -axP -aLc -aYK -aZU -bbc -bcA -bdV -bfo -bgB -bhZ -bjv -bdV -blV -bdV -boT -bqb -brf -bsz -bdV -buQ -bvV -bxq -byx -bzE -bAG -bxs -bCC -bDw -bEw -bFy -bGx -bHL -bIF -bJy -bKv -bLm -bMb -bMb -bMb -bNR -bOF -bFv -bPJ -bQl -bQK -bRt -bRR -bSq -bTe +aoJ +aii +arj +asx +aul +avJ +avJ +ayY +aAx +aBN +aDK +aFG +aHH +aJe +aAw +aMG +avN +avN +avN +aTm +aPX +axS +aLf +aYM +aZW +bbe +bcC +bdX +bfq +bgD +bib +bjx +bdX +blX +bdX +boV +bqd +brh +bsB +bdX +buR +bvW +bxr +byy +bzF +bAH +bxt +bCD +bDx +bEx +bFz +bGy +bHM +bIG +bJz +bKw +bLn +bMc +bMc +bMc +bNS +bOG +bFw bPI +bQk +bQJ +bRs +bRQ +bSp +bTd +bPH aab -bUz +bUy +bVb bVc -bVd -bVc -bUz -bWx -bWN -bXg -bXD -bXg -bXg -bYQ -bVa -bZw -bZQ -bUz -bUz -bMj -bMj -bMj -bMj -cbj -bMj -cbE +bVb +bUy +bWw +bWM +bXf +bXC +bXf +bXf +bYP +bUZ +bZv +bZP +bUy +bUy +bMk +bMk +bMk +bMk +cbi +bMk +cbD aab aab aab @@ -95673,111 +95647,111 @@ afc afx afQ afx -agP +agR afx -aih -aiZ +aij +ajb afx -akE -alA +akG +alD afx afx -aoH +aoK afx -arh -asv -auj -avH -avH -avG -aAv -aBL -aDI -aFE -aHF -aJc -aAt -aME -aOt -aPV +ark +asy +aum avK -aTj -aPU -aJs -aXx -aYL -aZV -bbd -bcB -bdV -bfp -bgC -bia -bdV -bdV -blW -bdV -bdV -bqc -bgC -bsA -bdV -buR -bvW -bxr -byy -bzF -bAH +avK +avJ +aAy +aBO +aDL +aFH +aHI +aJf +aAw +aMH +aOw +aPY +avN +aTm +aPX +aJv +aXz +aYN +aZX +bbf +bcD +bdX +bfr +bgE +bic +bdX +bdX +blY +bdX +bdX +bqe +bgE +bsC +bdX +buS +bvX bxs -bCD -bDx -bEx -bFz -bGy -bGy -bGy -bGA -bKw -bLn -bGy -bGy -bGy -bNS -bOG -bFv -bPJ -bPI -bQL -bRu -bRS -bRS -bTf +byz +bzG +bAI +bxt +bCE +bDy +bEy +bFA +bGz +bGz +bGz +bGB +bKx +bLo +bGz +bGz +bGz +bNT +bOH +bFw bPI +bPH +bQK +bRt +bRR +bRR +bTe +bPH aab -bUz -bVd +bUy bVc -bVd -bUz -bWy -bUB -bUB -bXE -bUB -bUB -bYR -bVa -bZw -bZR -bUz -caB -bZV -cbm -bZV -bZV -ccC -bMj -cbE +bVb +bVc +bUy +bWx +bUA +bUA +bXD +bUA +bUA +bYQ +bUZ +bZv +bZQ +bUy +caA +bZU +cbl +bZU +bZU +ccB +bMk +cbD aab aab aab @@ -95929,111 +95903,111 @@ aew aaV afd afR -agq -agQ -aht +agr +agS +ahv afd -aja -ajI -akF -alB -aja -anv -aoI -apO -aja -asw -auk -avI -axv -ayW +ajc +ajK +akH +alE +ajc +any +aoL +apR +ajc +asz +aun +avL +axy +ayZ +aAz +aBP +aDM +aFI +aHJ +aJg aAw -aBM -aDJ -aFF -aHG -aJd -aAt -aMF -aOu -aPW -avK -aTk -aPU -aVY -aLc -aCj -aZU -bbe -bcC -bdV -bfq -bgD -bib -bjw -bkz -blX -bnE -boU -bqd -brg -bsB -bdV -buS -bvX -bxs -bxs -bxs -bxs -bxs -aUB -bDy -aUB -bFv +aMI +aOx +aPZ +avN +aTn +aPX +aWa +aLf +aCm +aZW +bbg +bcE +bdX +bfs +bgF +bid +bjy +bkB +blZ +bnG +boW +bqf +bri +bsD +bdX +buT +bvY +bxt +bxt +bxt +bxt +bxt +aUE +bDz +aUE +bFw +bGA bGz -bGy -bGy -bGy -bGy -bLn -bMc -bGy -bMc -bNS -bOH -bFv -bPK -bQm -bQM -bRv -bRS -bRS -bTg -bPI -aab -bUz -bVc -bVC -bVc -bUz -bWz -bWO -bXh -bXE -bUB -bUB -bYS -bZh -bZw -bZS -bUz -caC -bMj +bGz +bGz +bGz +bLo +bMd +bGz +bMd +bNT +bOI +bFw bPJ -bMj -bMj -bPO -bMj +bQl +bQL +bRu +bRR +bRR +bTf +bPH +aab +bUy +bVb +bVB +bVb +bUy +bWy +bWN +bXg +bXD +bUA +bUA +bYR +bZg +bZv +bZR +bUy +caB +bMk +bPI +bMk +bMk +bPN +bMk aaa aab aab @@ -96186,111 +96160,111 @@ aex aaV afy afS -agr +ags afz afz -aii -aja -ajJ -akG -alC -amz -anw -aoJ -apP -aja -asx -auk -avJ -axw -ayX -aAt -aBN -aDK -aFG -aHH -aJe -aAt -aMG -aMG +aik +ajc +ajL +akI +alF +amC +anz +aoM +apS +ajc +asA +aun +avM +axz +aza +aAw +aBQ +aDN +aFJ +aHK +aJh +aAw +aMJ +aMJ +aQa +avN +aTm aPX -avK -aTj -aPU -axP -aLc -aYM -aZU -aZU -aZU -bdV -bdV -bdV -bdV -bdV -bkA -blY -bnF -bdV -bdV -bdV -bdV -bdV -buT -bvY -bxt -byz -bzG -byz -bBB -bqk -bDz -bmJ -bFA -bGA -bGy -bGy -bGy -bGy -bLn -bGy -bGy -bGy -bNS -bOI -bFv -bPL -bPI -bQN -bRw -bRT -bSr -bTh -bPI +axS +aLf +aYO +aZW +aZW +aZW +bdX +bdX +bdX +bdX +bdX +bkC +bma +bnH +bdX +bdX +bdX +bdX +bdX +buU +bvZ +bxu +byA +bzH +byA +bBC +bqm +bDA +bmL +bFB +bGB +bGz +bGz +bGz +bGz +bLo +bGz +bGz +bGz +bNT +bOJ +bFw +bPK +bPH +bQM +bRv +bRS +bSq +bTg +bPH aab -bUz -bUz -bUz -bUz -bUz -bUz -bUz -bXi -bXF -bYb -bYx -bYT -bZi -bZw -bZT -bUz -caC -bMj -bRz -cbG -bMj -bPO -bMj +bUy +bUy +bUy +bUy +bUy +bUy +bUy +bXh +bXE +bYa +bYw +bYS +bZh +bZv +bZS +bUy +caB +bMk +bRy +cbF +bMk +bPN +bMk aaa aaa aab @@ -96445,109 +96419,109 @@ afz afT afz afz -ahu +ahw afz -aja -ajK -akH -alD -alD -anx -alD -apQ -aja -asy -aul -avK -axx -ayY -aAx -aBO -aDL -aFH -aHI -aJf -aAt -avK -avK -aPY -avK -aTl -aPU -aVZ -aLc -aCj -aZW -bbf -bcD +ajc +ajM +akJ +alG +alG +anA +alG +apT +ajc +asB +auo +avN +axA +azb +aAA +aBR +aDO +aFK +aHL +aJi +aAw +avN +avN +aQb +avN +aTo +aPX +aWb +aLf +aCm +aZY +bbh bcF -aZW -bgE -bic -bjx -bkB -blZ -bnG -boV -bqe -brh -bsC -btK -buU -brk -brk -brk -bzH -bAI -bAI -bCE -bDA -bEy -bFv -bGB -bHM -bIG -bJz -bKx -bLn -bGy -bGy -bGy -bNS -bOJ -bFv -bPL -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bVe -bQQ -bVe -bQQ -bWA -bUz -bUz -bXG -bUz -bYy -bUz -bZj -bZw -bZU -bUz -caC -bRx -bPJ -bPJ -bMj -bPO -bMj +bcH +aZY +bgG +bie +bjz +bkD +bmb +bnI +boX +bqg +brj +bsE +btM +buV +brm +brm +brm +bzI +bAJ +bAJ +bCF +bDB +bEz +bFw +bGC +bHN +bIH +bJA +bKy +bLo +bGz +bGz +bGz +bNT +bOK +bFw +bPK +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bVd +bQP +bVd +bQP +bWz +bUy +bUy +bXF +bUy +bYx +bUy +bZi +bZv +bZT +bUy +caB +bRw +bPI +bPI +bMk +bPN +bMk aaa aaa aaa @@ -96700,111 +96674,111 @@ aez afd afA afU -ags -agu -ahv -aij -aja -ajL -akI -alE -alE -any -aoK -apR -aja -asz -alz -avL -axy -ayZ -aAy -aBP -aDM -aFI -aHJ -aJg -avK -aMH -aOv -aPZ -aRI -aTj -aPU -aJr -aLc -aYN -aZW -aZW -aZW -bdW -aZW -bgF -bid -bjy -bkC -bma -bnH -boW -bqf -bqf -bqf -btL -buV -bvZ -bxu -byA -bzI -bAJ -bBC -bqk -bok -bEz -bFv -bGC -bHN -bGA -bJA -bKy -bLn -bMd -bGy -bNp -bNS -bOK -bFv -bPM -bQn -bQO -bML -bML -bSs -bML -bML -bUg -bML -bML -bML -bML -bML -bWB -bWP -bXj -bXH -bYc -bYz -bUz -bUz -bZx -bUz -bUz -caC -bQp -bPJ +agt +agv +ahx +ail +ajc +ajN +akK +alH +alH +anB +aoN +apU +ajc +asC +alC +avO +axB +azc +aAB +aBS +aDP +aFL +aHM +aJj +avN +aMK +aOy +aQc +aRL +aTm +aPX +aJu +aLf +aYP +aZY +aZY +aZY +bdY +aZY +bgH +bif +bjA +bkE +bmc +bnJ +boY +bqh +bqh +bqh +btN +buW +bwa +bxv +byB +bzJ +bAK +bBD +bqm +bom +bEA +bFw +bGD +bHO +bGB +bJB +bKz +bLo +bMe +bGz +bNq +bNT +bOL +bFw +bPL +bQm +bQN +bMM +bMM +bSr +bMM +bMM +bUf +bMM +bMM +bMM +bMM +bMM bWA -bMj -bPO -bMj +bWO +bXi +bXG +bYb +bYy +bUy +bUy +bZw +bUy +bUy +caB +bQo +bPI +bWz +bMk +bPN +bMk aaa aaa aaa @@ -96957,112 +96931,112 @@ aeA aaV afz afz -agt -agR +agu +agT afz -aik -aja -ajM -akJ -alD -amA -alD -aoL -apS -aja -asA -aum -avK -avK -avK -avK -aBQ -aDN -azb -aHJ -aJg -avK -aMI -aMI -aPZ -aRJ -aTj -aPU -axP -aLc -aCj -aZX -bbg -bcE -bcF -bfr -bgG -bie -bdV -bdV -bmb -bdV -bdV -bqg -bri -bsD -btM -buW -bri -bxv -bqk -bqk -bqk -bqk -bqk -biL -bEA -bFv -bGD -bHO -bIH -bJB -bKz -bLo -bMd -bGy -bNp -bNS -bOK -bFv -bPN -bQo +aim +ajc +ajO +akL +alG +amD +alG +aoO +apV +ajc +asD +aup +avN +avN +avN +avN +aBT +aDQ +aze +aHM +aJj +avN +aML +aML +aQc +aRM +aTm +aPX +axS +aLf +aCm +aZZ +bbi +bcG +bcH +bft +bgI +big +bdX +bdX +bmd +bdX +bdX +bqi +brk +bsF +btO +buX +brk +bxw +bqm +bqm +bqm +bqm +bqm +biN +bEB +bFw +bGE +bHP +bII +bJC +bKA +bLp +bMe +bGz +bNq +bNT +bOL +bFw +bPM +bQn +bQO +bPI bQP -bPJ -bQQ -bSt -bTi -bMi -bMj -bMj -bMj -bMj -bVR -bMj -bPO -bUz -bXk -bXI -bYd -bYA -bUz -bZk -bZy -bZV -bZV -caD -bMj -bPJ -bPJ -bQp -bPO -bMj +bSs +bTh bMj +bMk +bMk +bMk +bMk +bVQ +bMk +bPN +bUy +bXj +bXH +bYc +bYz +bUy +bZj +bZx +bZU +bZU +caC +bMk +bPI +bPI +bQo +bPN +bMk +bMk aaa aaa aaa @@ -97214,112 +97188,112 @@ aeB afd afz afV -agu +agv afz afz afz -aja -ajN -akK -alF -amB -alD -aoL -apT -aja -asB -aun -avM -axz -aza -aAz -aBR -aDO -aFJ -aHK -aJh -aKU -aMJ -aOw -aQa -aOw -aTm -aPU -axP -aLc -aYO -aZY -bbg -bcF +ajc +ajP +akM +alI +amE +alG +aoO +apW +ajc +asE +auq +avP +axC +azd +aAC +aBU +aDR +aFM +aHN +aJk +aKX +aMM +aOz +aQd +aOz +aTp +aPX +axS +aLf +aYQ +baa +bbi +bcH +bdZ +bfu +bgJ +bih bdX -bfs -bgH -bif -bdV -bkD -bmc -bnI -bdV -bqh -brj -bqh -bqk -buX -bwa -bxw -byB -bzJ -bAK -bBD -bCF -bxw -bEA -bFv -bFv -bHP -bFv -bFv -bKA -bGy -bMd -bGy -bNp -bNS -bOK -bFv -bPO -bMj -bMj -bRx -bMj -bMj -bMj -bMj -bMj -bUG -bVf -bSu -bPJ -bMj -bPO -bUz -bXl -bXJ -bYe -bYB -bUz -bZl -bMj -bPJ -bMj -bPJ -bPJ -bRz -bPJ -bRx -bPO -bQQ -bMj +bkF +bme +bnK +bdX +bqj +brl +bqj +bqm +buY +bwb +bxx +byC +bzK +bAL +bBE +bCG +bxx +bEB +bFw +bFw +bHQ +bFw +bFw +bKB +bGz +bMe +bGz +bNq +bNT +bOL +bFw +bPN +bMk +bMk +bRw +bMk +bMk +bMk +bMk +bMk +bUF +bVe +bSt +bPI +bMk +bPN +bUy +bXk +bXI +bYd +bYA +bUy +bZk +bMk +bPI +bMk +bPI +bPI +bRy +bPI +bRw +bPN +bQP +bMk aaa aaa aab @@ -97471,112 +97445,112 @@ aeC aaV afz afz -agt -agR +agu +agT afz -aik -aja -ajO -akL -alG -amC -anz -aoM -apU -ari -asC -auo -avN -axA -azb -aAA -azb -aDP -aFK -aHL -aJi -aKV -aMK -aKV -aQb -azb -aTn -aPU -aWa -aLc -aCj -aZZ -bbh -bcG -bdY -bft -bcF -big -bdV -bkE -bmd -bnJ -bdV -bqi -brk -bsE -btN -buY -bwb -bxw -byC -bzK -bAL -bxw -bxw -bxw -bEA -bFv -bGE -bHQ -bII -bFv -bKB -bLp -bMe -bGy -bGy -bNT -bLp -bPf -bPP -bQp -bQQ -bPJ -bMj -bSu -bSu -bSu -bMj -bUH -bPJ -bPJ -bSu -bMj -bWC -bWQ -bVB -bXK -bYf -bVa -bUz -bZl -bMj -bQR -bPJ -bPJ -caE -bQp -bPJ -bMj +aim +ajc +ajQ +akN +alJ +amF +anC +aoP +apX +arl +asF +aur +avQ +axD +aze +aAD +aze +aDS +aFN +aHO +aJl +aKY +aMN +aKY +aQe +aze +aTq +aPX +aWc +aLf +aCm +bab +bbj +bcI +bea +bfv +bcH +bii +bdX +bkG +bmf +bnL +bdX +bqk +brm +bsG +btP +buZ +bwc +bxx +byD +bzL +bAM +bxx +bxx +bxx +bEB +bFw +bGF +bHR +bIJ +bFw +bKC +bLq +bMf +bGz +bGz +bNU +bLq +bPe bPO +bQo +bQP +bPI +bMk +bSt +bSt +bSt +bMk +bUG +bPI +bPI +bSt +bMk +bWB +bWP +bVA +bXJ +bYe +bUZ +bUy +bZk +bMk bQQ -bMj +bPI +bPI +caD +bQo +bPI +bMk +bPN +bQP +bMk aaa aab aab @@ -97728,112 +97702,112 @@ aez afd afz afW -agu +agv afz afz afz -aja -ajP -akL -alG -amD -anA -aoN -apV -arj -asD -aun -avM -axB -azc -aAz -aBS -aBW -aFL -aHM -aJj -aKW -aML -aOx -aQc -azb -aTn -aPU -aWb -aLe -aYP -aZW -aZW -aZW -aZW -aZW -bgI -bih -bdV -bkF -bme -bnK -bdV -bqj -brl -bsF -btO -buZ -bwc +ajc +ajR +akN +alJ +amG +anD +aoQ +apY +arm +asG +auq +avP +axE +azf +aAC +aBV +aBZ +aFO +aHP +aJm +aKZ +aMO +aOA +aQf +aze +aTq +aPX +aWd +aLh +aYR +aZY +aZY +aZY +aZY +aZY +bgK +bij +bdX +bkH +bmg +bnM +bdX +bql +brn +bsH +btQ +bva +bwd +bxy +byE +bzM +bAM +bBF +bCG bxx -byD -bzL -bAL -bBE -bCF -bxw -bEB -bFv -bGF -bHR -bIJ -bFv -bKC -bIE -bMf -bJw -bIE +bEC +bFw +bGG +bHS +bIK +bFw +bKD +bIF +bMg bJx -bOL -bFv -bPO -bMj -bQR -bPJ -bMj -bSu -bSw -bSw -bUh -bPJ +bIF +bJy +bOM +bFw +bPN +bMk +bQQ +bPI +bMk +bSt bSv -bSw +bSv +bUg +bPI bSu -bMj -bPO -bUz -bXm -bXL -bYg -bYC -bUz -bZl -bZz -bPJ -bPJ -caE -bRz -bPJ -cbH -bMj -ccD -bZz -bMj +bSv +bSt +bMk +bPN +bUy +bXl +bXK +bYf +bYB +bUy +bZk +bZy +bPI +bPI +caD +bRy +bPI +cbG +bMk +ccC +bZy +bMk aaa aab aab @@ -97985,112 +97959,112 @@ aeD aaV afB afz -agt -agR -ahw -aik -aja -ajP -akM -alH -amE -anB -aoO -apW -ark -asE -aup -avK -avK -avK -avK -aBT -aDP -aFM -aHN -aJk -azb -azb -aOy -aQd -azb -aTo -aPU -axP -aLc -aYK -baa -bbi -bcH -bdZ -aZW -bgJ -bii -bdV -bdV -bmf -bdV -bdV -bqk -bqk -bqk -bqk -bva -bwd -bxw -bxw -bxw -bxw -bxw -bxw -bxw -bEB -bFv -bGG -bHS -bIK -bFv -bFv -bFv -bMg -bMK -bMK -bNU -bFv -bFv -bPO -bMj -bPJ -bQp -bMj -bSv -bSw -bSw -bUi -bPJ -bVg -bVg +agu +agT +ahy +aim +ajc +ajR +akO +alK +amH +anE +aoR +apZ +arn +asH +aus +avN +avN +avN +avN +aBW +aDS +aFP +aHQ +aJn +aze +aze +aOB +aQg +aze +aTr +aPX +axS +aLf +aYM +bac +bbk +bcJ +beb +aZY +bgL +bik +bdX +bdX +bmh +bdX +bdX +bqm +bqm +bqm +bqm +bvb +bwe +bxx +bxx +bxx +bxx +bxx +bxx +bxx +bEC +bFw +bGH +bHT +bIL +bFw +bFw +bFw +bMh +bML +bML +bNV +bFw +bFw +bPN +bMk +bPI +bQo +bMk bSu -bMj -bWD -bUz -bUz -bUz -bUz -bUz -bUz -bZl -bPJ -bMj -bQp -bMj -bMj -bMj -bMj -bQp -bPO -ccX -bMj +bSv +bSv +bUh +bPI +bVf +bVf +bSt +bMk +bWC +bUy +bUy +bUy +bUy +bUy +bUy +bZk +bPI +bMk +bQo +bMk +bMk +bMk +bMk +bQo +bPN +ccW +bMk aaa aab aab @@ -98246,108 +98220,108 @@ afe afe afe afe -ajb -ajb -aja -aja -aja -aja -aoP -apX -aja -asF -aun -avM -axz -aza -aAz -aBU -aBW +ajd +ajd +ajc +ajc +ajc +ajc +aoS +aqa +ajc +asI +auq +avP +axC +azd +aAC +aBX +aBZ +aFQ aFN -aFK -aJl -azb -aFK -aOz -aQe -azb -aTp -aPU -awc -aLc -aYQ -bab -bab -bab -bea -aZW -bgK -bij -bjz -bkG -bmg -bnL -boX -bql -brm -bsG -btP -bvb -bwe -bxy -byE -bzM -bAM -bBF -bBF -bxy -bEB -bFv -bFv -bFv -bFv -bFv -bKD -bLq -bMh -bML -bML -bML -bML -bML -bPQ -bPJ -bPJ -bPJ -bMj -bSw -bSw -bSw -bUi -bPJ -bVg -bVg -bPJ -bMj -bWE -bML -bML -bML -bYh -bML -bML -bZm -bML -bML -bML -bML -bML -bML -bML -bML -bPQ +aJo +aze +aFN +aOC +aQh +aze +aTs +aPX +awf +aLf +aYS +bad +bad +bad +bec +aZY +bgM +bil +bjB +bkI +bmi +bnN +boZ +bqn +bro +bsI +btR +bvc +bwf +bxz +byF +bzN +bAN +bBG +bBG +bxz +bEC +bFw +bFw +bFw +bFw +bFw +bKE +bLr bMi +bMM +bMM +bMM +bMM +bMM +bPP +bPI +bPI +bPI +bMk +bSv +bSv +bSv +bUh +bPI +bVf +bVf +bPI +bMk +bWD +bMM +bMM +bMM +bYg +bMM +bMM +bZl +bMM +bMM +bMM +bMM +bMM +bMM +bMM +bMM +bPP bMj +bMk aab aab aab @@ -98499,112 +98473,112 @@ aeF afe afC afC -cgG +agw afC -ahx -ail -ajc -ajQ -akN +ahz +ain +aje +ajS +akP afe -amF +amI abC abR -apY -arl -asC -auo -avO -axA -azb -aAB -aBV -aDQ -aFO -aHO -aJm -aHO -aMM -aHO -aQf -aHO -aTq -aPU -aWc -aXy -aYR -bac -bbj -bcI -beb -aZW -bgL -bik -bjA -bkH -bmh -bnM -boY -bqm -brn +aqb +aro +asF +aur +avR +axD +aze +aAE +aBY +aDT +aFR +aHR +aJp +aHR +aMP +aHR +aQi +aHR +aTt +aPX +aWe +aXA +aYT +bae +bbl +bcK +bed +aZY +bgN +bim +bjC +bkJ +bmj +bnO +bpa bqo -btQ -bvc -bwf -bxy -byE -bzN -bAN -bBG -bCG -bxy -bEC -bFB -bEQ -bEQ -bEQ -bEQ -bKE -biL -bMi -bMi -bNq -bNV -bMj -bMj -bMj -bMj -bMj -bRy -bMj -bSw -bSw -bSw -bUh -bPJ -bVg -bVg -bPJ -bMj -bPJ -bWR -bQQ -bWA -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj +brp +bqq +btS +bvd +bwg +bxz +byF +bzO +bAO +bBH +bCH +bxz +bED +bFC +bER +bER +bER +bER +bKF +biN bMj bMj +bNr +bNW +bMk +bMk +bMk +bMk +bMk +bRx +bMk +bSv +bSv +bSv +bUg +bPI +bVf +bVf +bPI +bMk +bPI +bWQ +bQP +bWz +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk aab aab aaa @@ -98756,98 +98730,98 @@ aeF aff afD afX -agv -agS -ahy -aim -ajd -ajQ -akO +agx +agU +ahA +aio +ajf +ajS +akQ afe -amG -anC +amJ +anF abC -apZ -arm -asG -aun -avM -axC -azd -aAz -aBW -azb -aDP -aHP -aJn -azb -aDP -aOA -aQg -azb -aTr -aPU -axP -aLc -aYS -bad -bbk -bcJ -bec -aZW -bgM -bil -bjB -bkI -bmi -bjB -boZ -bqn -bro -bsH -btR -bvd -bwg -bxy -bxy -bzO -bxy -bBH -bxy -bxy -bED -bFC -bED -bED -bED -bED -bKF -biL -bMj -bMj -bMj -bMj -bMj +aqc +arp +asJ +auq +avP +axF +azg +aAC +aBZ +aze +aDS +aHS +aJq +aze +aDS +aOD +aQj +aze +aTu +aPX +axS +aLf +aYU +baf +bbm +bcL +bee +aZY +bgO +bin +bjD +bkK +bmk +bjD +bpb +bqp +brq +bsJ +btT +bve +bwh +bxz +bxz +bzP +bxz +bBI +bxz +bxz +bEE +bFD +bEE +bEE +bEE +bEE +bKG +biN +bMk +bMk +bMk +bMk +bMk aab aaa aaa -bMj -bPJ -bMj -bSu -bSw +bMk +bPI +bMk +bSt bSv -bUi bSu -bSw -bSw -bPJ -bMj -bPJ -bMj -bMj -bMj -bMj +bUh +bSt +bSv +bSv +bPI +bMk +bPI +bMk +bMk +bMk +bMk aaa aaa aab @@ -99014,94 +98988,94 @@ afe afE afD afD -agT -ahz -agv -aje -cgH -ajR -alI -amH -anD -aoQ -aqa -arn -asH -auq -avK -avK -avK -avK -aBX -aDR -aBX -avK -aBX -aKX -aBX -avK -aBX -aRK -aBX -aPU -axP -aLc -aCj -bae -bbl -bcK -bed -bfu -bgN -bim -bjC -bkJ -bmj -bnN -bpa -bqo -brp -bsI -btP -bve -bwd -bxz -byF -bzP -bAO -bBI -bCH -bDB +agV +ahB +agx +ajg +ajT +akR +alL +amK +anG +aoT +aqd +arq +asK +aut +avN +avN +avN +avN +aCa +aDU +aCa +avN +aCa +aLa +aCa +avN +aCa +aRN +aCa +aPX +axS +aLf +aCm +bag +bbn +bcM +bef +bfw +bgP +bio +bjE +bkL +bml +bnP +bpc +bqq +brr +bsK +btR +bvf +bwe +bxA +byG +bzQ +bAP +bBJ +bCI +bDC +bEF +bFE +bGI +bHU +bIM bEE -bFD -bGH -bHT -bIL -bED -bKF -bok -biL -bMM -bNr -biL +bKG +bom +biN +bMN +bNs +biN aab aab aab aaa -bMj -bRz -bMj -bSu -bSu -bTG -bMj -bPJ -bPJ -bPJ -bSu -bMj +bMk bRy -bMj +bMk +bSt +bSt +bTF +bMk +bPI +bPI +bPI +bSt +bMk +bRx +bMk aaa aaa aaa @@ -99273,92 +99247,92 @@ afY afD afY afe -ain +aip afe afe afe afe -amI -anE -aoR -aqb +amL +anH +aoU +aqe aaV -asI -auk -avP -axD +asL +aun +avS +axG +azh +avN +aCb aze -avK -aBY -azb -aFP -avK -aJo -azb -aMN -avK -aBY -azb -aTs -aPU -axP -aLc -aYO -baf -bbm -bcL -bee -bfv -bgO -bin -bjD -bkK -bmk -bnO -bpb -bqo -bqo -bsJ +aFS +avN +aJr +aze +aMQ +avN +aCb +aze +aTv +aPX +axS +aLf +aYQ +bah +bbo +bcN +beg +bfx +bgQ +bip +bjF +bkM +bmm +bnQ +bpd +bqq +bqq +bsL btS -bvf -bwh -bwh -byG -bzQ -bAP -bBJ -bCI -bDC -bEF -bFE -bGI -bHU -bIM -bED -bKG -bLr -bMk -bok -bNs -biL +bvg +bwi +bwi +byH +bzR +bAQ +bBK +bCJ +bDD +bEG +bFF +bGJ +bHV +bIN +bEE +bKH +bLs +bMl +bom +bNt +biN aab aab aab aaa -bMj -bPJ -bMj -bMj -bTj -bMj -bMj -bSu -bPJ -bPJ -bPJ -bMj -bPJ -bMj +bMk +bPI +bMk +bMk +bTi +bMk +bMk +bSt +bPI +bPI +bPI +bMk +bPI +bMk aaa aaa aaa @@ -99530,92 +99504,92 @@ afC afD afC afe -aio -ajf -ajS -akP -alJ -amJ -anF -aoR -aqc -aro +aiq +ajh +ajU +akS +alM +amM +anI +aoU +aqf +arr adP -auk -avP -axE -azf -avK -aBZ -aDS -aFQ -avK -aBZ -aDS -aMO -avK -aBZ -aDS -aTt -aPU -aJs -aLc -aCj -bag -bbn -bcM -bef -bah -bgP -bah -bah -bkL -bml -bnP -bpc -bqp -brq -bsK -bjB -bvg -bwi -btV -byH -bvg -bwi -bad -bCJ -bDD -bEG -bFF -bGJ -bHV -bIN -bED -bok -bKF -biL -bMN -bNt -biL +aun +avS +axH +azi +avN +aCc +aDV +aFT +avN +aCc +aDV +aMR +avN +aCc +aDV +aTw +aPX +aJv +aLf +aCm +bai +bbp +bcO +beh +baj +bgR +baj +baj +bkN +bmn +bnR +bpe +bqr +brs +bsM +bjD +bvh +bwj +btW +byI +bvh +bwj +baf +bCK +bDE +bEH +bFG +bGK +bHW +bIO +bEE +bom +bKG +biN +bMO +bNu +biN aab aab aaa aaa -bMj -bPJ -bMj -bSx -bPJ -bTH -bMj -bMj -bMj -bMj -bTj -bMj -bPJ -bMj +bMk +bPI +bMk +bSw +bPI +bTG +bMk +bMk +bMk +bMk +bTi +bMk +bPI +bMk aaa aaa aab @@ -99783,96 +99757,96 @@ acl aeI afg afe -cgF +afZ afD afC afe -aip -ajg -ajT -akQ -alK -amK +air +aji +ajV +akT +alN +amN abC -aoS -aqd -arp +aoV +aqg +ars adP -auk -avQ -axF -azg -avK -aCa -aDT -aCa -avK -aCa -aKY -aCa -avK -aCa -aRL -aCa -aPU -aWd -aLc -aYO -bah -bbo -bcN -beg -bfw -bgQ -bio -bjE -bkM -bmm -bnP -bpd -bqq -bjB -bjA -bad -bvh -bwj -bwm -byI -bzR -bAQ -bBK -bCK -bDE -bEH -bFG -bGK -bGK -bIO -bEH -bEH -bKF -biL -biL -biL -biL -biL -biL +aun +avT +axI +azj +avN +aCd +aDW +aCd +avN +aCd +aLb +aCd +avN +aCd +aRO +aCd +aPX +aWf +aLf +aYQ +baj +bbq +bcP +bei +bfy +bgS +biq +bjG +bkO +bmo +bnR +bpf +bqs +bjD +bjC +baf +bvi +bwk +bwn +byJ +bzS +bAR +bBL +bCL +bDF +bEI +bFH +bGL +bGL +bIP +bEI +bEI +bKG +biN +biN +biN +biN +biN +biN aaa aaa -bMj -bPJ -bMj -bPJ -bPJ -bTI +bMk +bPI +bMk +bPI +bPI +bTH +bUi bUj -bUk -bUk -bVD -bSu -bMj -bPJ -bMj +bUj +bVC +bSt +bMk +bPI +bMk aab aab aab @@ -100041,95 +100015,95 @@ aeJ afh afe afC -agw +agy afC afe -aiq -ajh -ajU -akR -alL -amL -anG -aoT -aqe -arq -asJ -aur -avR -avR -avR -aAC -aCb -aDU -aFR -aHQ -aCb -aDU -aMP -aOB -aQh -aRM -aTu -aUE -aWe -aLc -aYK -bae -bbp -bcO -beh -bcL -bgR -bip -bjF -bkN -bmn -bnQ -bnV -bqr -brr -bsL -bad -bvi -bwk -bxA -byJ -bzS -bAR -bad -bCL -bDF +ais +ajj +ajW +akU +alO +amO +anJ +aoW +aqh +art +asM +auu +avU +avU +avU +aAF +aCe +aDX +aFU +aHT +aCe +aDX +aMS +aOE +aQk +aRP +aTx +aUH +aWg +aLf +aYM +bag +bbr +bcQ +bej +bcN +bgT +bir +bjH +bkP +bmp +bnS +bnX +bqt +brt +bsN +baf +bvj +bwl +bxB +byK +bzT +bAS +baf +bCM +bDG +bEJ +bFI +bGM +bHX +bIQ +bJD bEI -bFH -bGL -bHW -bIP -bJC -bEH -bKF -biL -bMO -bNu -bNW -bOM -biL +bKG +biN +bMP +bNv +bNX +bON +biN aab aab -bMj -bPJ -bMj -bPJ -bSu -bSu -bRz -bPJ -bSu -bSu -bSu -bMj -bPJ -bMj +bMk +bPI +bMk +bPI +bSt +bSt +bRy +bPI +bSt +bSt +bSt +bMk +bPI +bMk aab aab aab @@ -100301,92 +100275,92 @@ afe afe afe afe -air -air -air -air -air +ait +ait +ait +ait +ait aaV aaV aaV aaV aaV -asK -aus -avS +asN +auv +avV abD abD -aAD +aAG abD -aDV -aFS -aHR +aDY +aFV +aHU abC abD -aMQ -aOC -aQi +aMT +aOF +aQl abD -aTv -aUE -aWe -aLc -aYO -baf -bbq -bcP -bei -bfx -bgS -bbq -bjG -bkO -bmo -bnR -bpe -bqs -brs -bsM -btT -bvj -bwl -bxB -byK -bzT -bwl -bBL -bCM -bDF -bEJ -bFI -bGM -bHX -bGM -bJD -bEH -bKF -biL -bJL -bNv -bNX -bNX -biL +aTy +aUH +aWg +aLf +aYQ +bah +bbs +bcR +bek +bfz +bgU +bbs +bjI +bkQ +bmq +bnT +bpg +bqu +bru +bsO +btU +bvk +bwm +bxC +byL +bzU +bwm +bBM +bCN +bDG +bEK +bFJ +bGN +bHY +bGN +bJE +bEI +bKG +biN +bJM +bNw +bNY +bNY +biN aab aaa -bMj -bPJ -bMj -bPJ -bPJ -bTJ -bUk -bUI -bVh -bVE -bUk -bMj -bPJ -bMj +bMk +bPI +bMk +bPI +bPI +bTI +bUj +bUH +bVg +bVD +bUj +bMk +bPI +bMk aab aaa aaa @@ -100555,8 +100529,8 @@ aeL afj aad aah -agx -agU +agz +agW aej aah aah @@ -100568,82 +100542,82 @@ aah aah aah aaV -asL -asL -asL -asL -asL -asL -asL -asL -aFT -asL -aJp -aKZ -aMR -ahr -ahr -ahr -ahr -ahr -aWf -aXz -aYT -bai -bbr -bcQ -bej -bfy -bgT -biq -bjH -bkP -bmp -bnS -bpf -bqt -bqt -bsN -btU -bvk -bwm -bwm -byL -bzU -bAS -bad -bCL -bDG -bEJ -bFJ -bGN -bHY -bIQ -bJE -bEH -bKF -bMl -bMP -bNw -bNY +asO +asO +asO +asO +asO +asO +asO +asO +aFW +asO +aJs +aLc +aMU +aht +aht +aht +aht +aht +aWh +aXB +aYV +bak +bbt +bcS +bel +bfA +bgV +bis +bjJ +bkR +bmr +bnU +bph +bqv +bqv +bsP +btV +bvl +bwn +bwn +byM +bzV +bAT +baf +bCM +bDH +bEK +bFK +bGO +bHZ +bIR +bJF +bEI +bKG +bMm +bMQ +bNx +bNZ bOO -biL +biN aab aaa -bMj -bPJ -bMj -bSy -bTk -bTK -bMj -bMj -bMj -bMj -bMj -bMj -bPJ -bMj +bMk +bPI +bMk +bSx +bTj +bTJ +bMk +bMk +bMk +bMk +bMk +bMk +bPI +bMk aab aab aaa @@ -100811,96 +100785,96 @@ aeg aad aad aad -afZ -agy -agy -ahA -agy -agy -agy -agy -agy -agy -agy -agy -agy -arr -asL -aut -avT -axG -azh -avT -aCc -aDW -aFU -asL -aJq -aLa -aMS -aOD -aNf -aRN -axP -axP -aWg -aLc -aYO -baj -bbs -bcR -bek -bfz -bgU -bir -bjI -bkQ -bmq -bnT -bpg -bqu -brt -bsO -btV -bvl -bwn -bxC -byM -bzV -bAT -bBM -bCL -bDF -bEJ -bFK -bGO -bHZ -bGO -bJF -bEH -bKF -biL -bJL -bNx -bNZ -bNZ -biL +aga +agA +agA +ahC +agA +agA +agA +agA +agA +agA +agA +agA +agA +aru +asO +auw +avW +axJ +azk +avW +aCf +aDZ +aFX +asO +aJt +aLd +aMV +aOG +aNi +aRQ +axS +axS +aWi +aLf +aYQ +bal +bbu +bcT +bem +bfB +bgW +bit +bjK +bkS +bms +bnV +bpi +bqw +brv +bsQ +btW +bvm +bwo +bxD +byN +bzW +bAU +bBN +bCM +bDG +bEK +bFL +bGP +bIa +bGP +bJG +bEI +bKG +biN +bJM +bNy +bOa +bOa +biN aaa aaa -bMj -bRA -bMj -bMj -bMj -bMj -bMj -bRA -bPJ -bPJ -bPJ -bPJ -bPJ -bMj +bMk +bRz +bMk +bMk +bMk +bMk +bMk +bRz +bPI +bPI +bPI +bPI +bPI +bMk aab aab aaa @@ -101068,7 +101042,7 @@ aeh aeM afk afk -aga +agb aad aeO aeO @@ -101081,83 +101055,83 @@ aeO aeO aeO aad -ars -asL -aut -avU -axH -azi -avU -aCd -aDX -aFU -asL -aJr -aLb -aMT -aOE -aOE -aOE -aOE -aOE -aOE -aXA -aYU -bak -bbt -bcS -bel -bfA -bgV -bis -bah -bkR -bmr -bnU -bph -bqv -bru -bsP -bry -bry -bry -bry -bry -bry -bry -bad -bCN -bDH -bEJ -bFL -bGM -bIa -bIR -bJG -bEH -bKF -biL -bMQ -bNu -bOa -bOQ -biL +arv +asO +auw +avX +axK +azl +avX +aCg +aEa +aFX +asO +aJu +aLe +aMW +aOH +aOH +aOH +aOH +aOH +aOH +aXC +aYW +bam +bbv +bcU +ben +bfC +bgX +biu +baj +bkT +bmt +bnW +bpj +bqx +brw +bsR +brA +brA +brA +brA +brA +brA +brA +baf +bCO +bDI +bEK +bFM +bGN +bIb +bIS +bJH +bEI +bKG +biN +bMR +bNv +bOb +bOP +biN aab aab -bMj -bPJ -bPJ -bPJ -bPJ -bPJ -bRz -bPJ -bMj -bMj -bMj -bMj -bMj -bMj +bMk +bPI +bPI +bPI +bPI +bPI +bRy +bPI +bMk +bMk +bMk +bMk +bMk +bMk aab aab aaa @@ -101325,91 +101299,91 @@ aei aeN afl afF -agb +agc aad adI adI -ahB -aji -ajV -ajV +ahD +ajk +ajX +ajX adI -ahB -ahB +ahD +ahD adI aad -ars -asL -auu -avV -axI -azj -avV -aCe -aDY -aFV -asL -axP -aLc -aMU -azo -axP -axP -axP -aUF -axP -aXB -aYV -bal -bbu -bcT -bem -bfB -bgW -bit -bjJ -bkS -bms -bnV -bpi -bqv -brv -bsQ -btW -bvm -bwo -bxD -byN -bzW -bAU -bBN -bCO -bDF -bEK -bFM -bGM -bIb -bIS -bJH -bEH -bKF -biL -bMl -biL -biL -biL -biL +arv +asO +aux +avY +axL +azm +avY +aCh +aEb +aFY +asO +axS +aLf +aMX +azr +axS +axS +axS +aUI +axS +aXD +aYX +ban +bbw +bcV +beo +bfD +bgY +biv +bjL +bkU +bmu +bnX +bpk +bqx +brx +bsS +btX +bvn +bwp +bxE +byO +bzX +bAV +bBO +bCP +bDG +bEL +bFN +bGN +bIc +bIT +bJI +bEI +bKG +biN +bMm +biN +biN +biN +biN aab aab -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj -bMj +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk +bMk aab aab aab @@ -101584,77 +101558,77 @@ aad aad abG aad -agV -ahB -ais -ajj -aji -akS +agX +ahD +aiu +ajl +ajk +akV adI adI aen aen aad -ars -asL -auv -avW -axJ -azk -aAE -aCf -aDZ -aFW -asL -axP -aLc -axP -aOF -aQj -aRO -aRO -aRO -aWh -aOF -aYW -bah -bbv -bcU -ben -bah -bgX -biu -bjK -bkT -bmt -bnW -bpj -bjK -brw -bsR -btX -bvn -bwp -btX -byO -bzX -bAV -bBO -bCP -bDI -bEL -bFN -bGP -bIc -bIT -bJI -bEH -bKF -biL -bMR -bNy -blg -biL +arv +asO +auy +avZ +axM +azn +aAH +aCi +aEc +aFZ +asO +axS +aLf +axS +aOI +aQm +aRR +aRR +aRR +aWj +aOI +aYY +baj +bbx +bcW +bep +baj +bgZ +biw +bjM +bkV +bmv +bnY +bpl +bjM +bry +bsT +btY +bvo +bwq +btY +byP +bzY +bAW +bBP +bCQ +bDJ +bEM +bFO +bGQ +bId +bIU +bJJ +bEI +bKG +biN +bMS +bNz +bli +biN aab aab aab @@ -101841,77 +101815,77 @@ aaa aad aej aad -agW +agY adI -ait -aen -ajW aiv -alM -aji +aen +ajY +aix +alP +ajk adI -aoU +aoX aad -ars -asL -auw -avX -axK -avW -avW -aCg -aEa -aFX -asL -aJs -aLc -aMV -aOF -aQk -aRP -aRP -aRP -aWi -aOF -aYX -bah -bbw -bcV -beo -bfC -bgY -biv -bjL -bkU -bmu -bnX -bpk -bjK -brx -bsS -btX -bvo -bwq -bxE -byP -bzY -bAW -bBP -bCQ -bDJ -bEM -bFO -bGQ -bId -bIU -bJJ -bEH -bKF -biL -bMS -bNz -bOb -biL +arv +asO +auz +awa +axN +avZ +avZ +aCj +aEd +aGa +asO +aJv +aLf +aMY +aOI +aQn +aRS +aRS +aRS +aWk +aOI +aYZ +baj +bby +bcX +beq +bfE +bha +bix +bjN +bkW +bmw +bnZ +bpm +bjM +brz +bsU +btY +bvp +bwr +bxF +byQ +bzZ +bAX +bBQ +bCR +bDK +bEN +bFP +bGR +bIe +bIV +bJK +bEI +bKG +biN +bMT +bNA +bOc +biN aab aab aab @@ -102097,81 +102071,81 @@ aad aad aad aah -agz +agB adI adI aen -ajk +ajm aen aen -alN -amM +alQ +amP adI -ajW +ajY aad -art -asL -aux -avY -axL -azl -aAF -aCh -aEb -aFY -asL -axP -aLd -aMW -aOF -aQl -aQl -aQl -aUG -aWj -aOF -aYY -bah -bbx -bcW -bep -bfD -bgZ -biw -bjK -bkV -bmv -bnY -bpl -bjK -bry -bsT -btY -bvp -bwr -bry -bvp -bwr -bry -bBQ -bCR -bxw -bEH -bEH -bEH -bEH -bEH -bEH -bEH -bKF -biL -biL -bok -bOc -biL -bPg -bPR -bQq +arw +asO +auA +awb +axO +azo +aAI +aCk +aEe +aGb +asO +axS +aLg +aMZ +aOI +aQo +aQo +aQo +aUJ +aWl +aOI +aZa +baj +bbz +bcY +ber +bfF +bhb +biy +bjM +bkX +bmx +boa +bpn +bjM +brA +bsV +btZ +bvq +bws +brA +bvq +bws +brA +bBR +bCS +bxx +bEI +bEI +bEI +bEI +bEI +bEI +bEI +bKG +biN +biN +bom +bOd +biN +bPf +bPQ +bQp aab aab aab @@ -102357,78 +102331,78 @@ aah aad adp adI -ahB -ahB +ahD +ahD +ajZ +akW +alP ajX -akT -alM -ajV adI -aoV +aoY aad -aru -asL -asL -avZ -axM -axM -aAG -aCi -asL -aFZ -asL -aJt -aLe -aMX -aOG -aQm -aQm -aTw -aUH -aWk -aOF -aYY -bah -bby -bcX -beq -bah -bha -bix -bjM -bkW -bmw -bnZ -bpm -bqw -brz -bsU -btZ -bvq -bws -bxF -byQ -bzZ -bAX -bBR -bCS -bDK -bEN -bFP -bGR -bIe -bIV -bJK -bJK -bLs -bMm +arx +asO +asO +awc +axP +axP +aAJ +aCl +asO +aGc +asO +aJw +aLh +aNa +aOJ +aQp +aQp +aTz +aUK +aWm +aOI +aZa +baj +bbA +bcZ +bes +baj +bhc +biz +bjO +bkY +bmy +bob +bpo +bqy +brB +bsW +bua +bvr +bwt +bxG +byR +bAa +bAY +bBS +bCT +bDL +bEO +bFQ +bGS +bIf +bIW bJL -bok -bOd -bOR -bPh -bPS -bQr +bJL +bLt +bMn +bJM +bom +bOe +bOQ +bPg +bPR +bQq aab acs aab @@ -102614,78 +102588,78 @@ aad aad aeO aeO -aiu -ajl -aiu -akU -alO -amN -anH +aiw +ajn +aiw +akX +alR +amQ +anK aad aad -art +arw aah -auy -awa -axN -azm -aAH -aCj -aEc -axP -aHS -axP -aLc -aMY -aOH -aQn -aRQ -aTx -aUI -aWl -aOF -aYY -bah -bbz -bcY -ber -bfE -bhb -biy -bjN -bkX -bmx -boa -bpn -bqx -brA -bsV -bua -bvr -bvr -bvr -bvr -bvr -bAY -bBS -bCT -bDK -bEO -bFQ -bDK -bIf -biL -biL -biL -biL -bMn -biL -biL -biL -biL -bPi -bPR -bQq +auB +awd +axQ +azp +aAK +aCm +aEf +axS +aHV +axS +aLf +aNb +aOK +aQq +aRT +aTA +aUL +aWn +aOI +aZa +baj +bbB +bda +bet +bfG +bhd +biA +bjP +bkZ +bmz +boc +bpp +bqz +brC +bsX +bub +bvs +bvs +bvs +bvs +bvs +bAZ +bBT +bCU +bDL +bEP +bFR +bDL +bIg +biN +biN +biN +biN +bMo +biN +biN +biN +biN +bPh +bPQ +bQp aab aab aaa @@ -102867,76 +102841,76 @@ adl aeO afm ael -agc +agd ael adI -ahC +ahE adl aen aen adl aen -amO +amR adI aad aav -arv -asM -auz -awb -axO -azn -aAI -aCk -awb -awb -aHT -awb -aLf -aMZ +ary +asP +auC +awe +axR +azq +aAL +aCn +awe +awe +aHW +awe +aLi +aNc +aOL +aQr +aRU +aTB +aQp +aWo aOI -aQo -aRR -aTy -aUJ -aWm -aOF -aYZ -bah -bbA -bcZ -ber -bfD -bhc -biz -bjO -bjO -bmy -bmy -bmy -bjO -brB -bsW -bub -bub -bub -bub -bub -bub -bub -bBT -bCU +aZb +baj +bbC +bdb +bet +bfF +bhe +biB +bjQ +bjQ +bmA +bmA +bmA +bjQ +brD +bsY +buc +buc +buc +buc +buc +buc +buc +bBU +bCV +bDM +bEQ +bFS bDL -bEP -bFR -bDK -bEB -biL -bJL -bKH -bJL -bMo -biL +bEC +biN +bJM +bKI +bJM +bMp +biN aab aab aab @@ -103124,76 +103098,76 @@ adl aeP afn afG -agd +age afG -agX -ahD +agZ +ahF adl adl aen -akV -alP -amP -anI -aoW -aqf -arw -asN -auy -awc -axP -azo -aAJ -aCl -aEd -aGa -aHS -axP -aLg -aNa -aOJ +akY +alS +amS +anL +aoZ +aqi +arz +asQ +auB +awf +axS +azr +aAM +aCo +aEg +aGd +aHV +axS +aLj +aNd +aOM +aQs +aRV +aTC aQp -aRS -aTz -aUJ -aUJ -aXC -aYY -bah -bbB -bcZ -bes -bfF -bhd -biA -bjP -bkY -bmz -bob -bpo -bqy -brC -bsX +aQp +aXE +aZa +baj +bbD +bdb +beu +bfH +bhf +biC +bjR +bla +bmB +bod +bpq +bqA +brE +bsZ +bud +bvt +bvt +bvt +bvt +bvt buc -bvs -bvs -bvs -bvs -bvs -bub -bBU -bxw -bDK -bDK -bDK -bDK -bEB -biL -bJL -bJL -bok -bMo -biL +bBV +bxx +bDL +bDL +bDL +bDL +bEC +biN +bJM +bJM +bom +bMp +biN aab aab aab @@ -103381,76 +103355,76 @@ aek aeO adm afG -age +agf afG ael -ahE +ahG aen adl adI adI -alQ +alT ael ael aad aae aah abK -auy -auy -auy -auy -auy -auy -auy -auy -auy -aJu -aLg -aNa -aOJ -aQq -aRT -aTA -aUK -aWn -aOF -aZa -bah -bbC -bcZ -bcZ -bfG -bhe -biB -bjQ -bkZ -bmA -boc -bpp -bqz -brD -bsY -bud -bvs -bvs -bvs -bvs -bvs -bAZ -bBV -bCV -bDM -bEQ -bEQ -bEQ -bIg -biL -bJM -bKI -bLt -bMp -biL +auB +auB +auB +auB +auB +auB +auB +auB +auB +aJx +aLj +aNd +aOM +aQt +aRW +aTD +aUM +aWp +aOI +aZc +baj +bbE +bdb +bdb +bfI +bhg +biD +bjS +blb +bmC +boe +bpr +bqB +brF +bta +bue +bvt +bvt +bvt +bvt +bvt +bBa +bBW +bCW +bDN +bER +bER +bER +bIh +biN +bJN +bKJ +bLu +bMq +biN aab aab aab @@ -103638,10 +103612,10 @@ ael aeQ afo afH -agf +agg afG adI -ahC +ahE adI ael aen @@ -103661,53 +103635,53 @@ aab aab aab aab -aGb -awc -aLh -aNb -aOF -aOF -aOF -aOF -aOF -aOF -aOF -aZb -bah -bbD -bcZ -bet -bfH -bhe -biC -bjR -bla -bmB -bod -bpq -bqA -brE -bsZ -bue -bvs -bvs -bvs -bvs -bvs -bub -bBW -bCW -bDN -biL -biL -biL -bok -biL -bJL -bKJ +aGe +awf +aLk +aNe +aOI +aOI +aOI +aOI +aOI +aOI +aOI +aZd +baj +bbF +bdb +bev +bfJ +bhg +biE +bjT +blc +bmD +bof +bps +bqC +brG +btb +buf +bvt +bvt +bvt +bvt +bvt +buc +bBX +bCX +bDO +biN +biN +biN +bom +biN +bJM +bKK +bLv bLu -bLt -biL +biN aab aaa aab @@ -103895,13 +103869,13 @@ adI aeR adE afI -agg -agA +agh +agC aen -ahF -aiv +ahH +aix aen -ajY +aka aeO aaa aaa @@ -103918,53 +103892,53 @@ aab aab aab aab -aGb -aJv -aLg -aNc -auy -aQr -aRU -aTB -aQt -aWo -aXD -aYY -bah -bah -bda -bah -bfI -bhf -biD -bfJ -bfJ -bmC -boe -boe -boe -brF -bta -buf -bvs -bvs -bvs -bvs -bvs -bBa -bok -bok -bmK -biL -bFS -blg -bok -biL -bJL -bKK -bLt -bLv -biL +aGe +aJy +aLj +aNf +auB +aQu +aRX +aTE +aQw +aWq +aXF +aZa +baj +baj +bdc +baj +bfK +bhh +biF +bfL +bfL +bmE +bog +bog +bog +brH +btc +bug +bvt +bvt +bvt +bvt +bvt +bBb +bom +bom +bmM +biN +bFT +bli +bom +biN +bJM +bKL +bLu +bLw +biN aab aaa aaa @@ -104155,10 +104129,10 @@ adE adI adI aen -ahG -aiw +ahI +aiy aen -ajZ +akb aeO aaa aad @@ -104169,59 +104143,59 @@ aav aad aab aab -axQ -arK -axQ -arK -axQ -arK -aGb -aJw -aLi -aHS -auy -aQs -aRV -aTC -aQt -aWp -aXE -aZc -bam -bbE -bdb -beu -bfJ -bhg -biE -bjS -blb -bmD -bof -bpr -bqB -brG -btb -bug -bvs -bvs -bvs -bvs -bvs -bBb -bBX -bok -bDO -biL -bFT -bFT -bok -biL -bok -bKL -bLt -bLv -biL +axT +arN +axT +arN +axT +arN +aGe +aJz +aLl +aHV +auB +aQv +aRY +aTF +aQw +aWr +aXG +aZe +bao +bbG +bdd +bew +bfL +bhi +biG +bjU +bld +bmF +boh +bpt +bqD +brI +btd +buh +bvt +bvt +bvt +bvt +bvt +bBc +bBY +bom +bDP +biN +bFU +bFU +bom +biN +bom +bKM +bLu +bLw +biN aaa aaa aaa @@ -104412,10 +104386,10 @@ ael adG aen adI -ahH +ahJ adI aen -ajZ +akb aeO aaa aad @@ -104423,62 +104397,62 @@ acC aah aad aae -asO +asR aab -awd -axR -axR -axR -axR -axR -arK -aHU -aJx -aLg -aNd -auy -aQt -aRW -aQt -aQt -aWq -aXF -aXF -aXF -bbF -aXF -bev -bfK -bhh -biF -bjT -blc -bmE -bog -bps -bqC -brH -btc -bue -bub -bub -bub -bub -bub -bub -bBY -bok -bmK -biL -bFU -bDR -bok -biL -bJM -bKL -bLt -bMq -biL +awg +axU +axU +axU +axU +axU +arN +aHX +aJA +aLj +aNg +auB +aQw +aRZ +aQw +aQw +aWs +aXH +aXH +aXH +bbH +aXH +bex +bfM +bhj +biH +bjV +ble +bmG +boi +bpu +bqE +brJ +bte +buf +buc +buc +buc +buc +buc +buc +bBZ +bom +bmM +biN +bFV +bDS +bom +biN +bJN +bKM +bLu +bMr +biN aaa aaa aaa @@ -104669,73 +104643,73 @@ ael adJ ael adI -ahG +ahI adG aen -aka +akc aeO aaa aad aeX aah -aqg +aqj abG -asP +asS aab -arK -axR -axR -axR -axR -axR -aGb -aHV -aJx -aLj -aNe -aOK -aQu -aQu -aQu -aQu -aWr -aXG -aZd -ban -bbG -aXF -bew -bfL -bhi -biG -bjU -bjU -bmF -boh -bpt -bqD -brI -btd -buh -bvt -bwt -bxG -byR -bAa -byU -bok -bok -byY -biL +arN +axU +axU +axU +axU +axU +aGe +aHY +aJA +aLm +aNh +aON +aQx +aQx +aQx +aQx +aWt +aXI +aZf +bap +bbI +aXH +bey +bfN +bhk +biI +bjW +bjW +bmH +boj +bpv +bqF +brK +btf +bui +bvu +bwu +bxH +byS +bAb byV -bok -bok -biL -bJN -bKL -bLt -bLv -biL +bom +bom +byZ +biN +byW +bom +bom +biN +bJO +bKM +bLu +bLw +biN aaa aaa aaa @@ -104923,76 +104897,76 @@ adH aeS adI afG -agh +agi afG adI -ahI +ahK adG adn -aka +akc aeO aaa aad adk acB aad -arx -asP +arA +asS aab -awd -axR -axR -axR -axR -axR -aGb -aHV -aJx -aLk -axP -aGb -aGb -aGb -aGb -aGb -aGb +awg +axU +axU +axU +axU +axU +aGe +aHY +aJA +aLn +axS +aGe +aGe +aGe +aGe +aGe +aGe +aXJ +aZg +baq +bbJ aXH -aZe -bao -bbH -aXF -bex -bfM -bfJ -biH -bjV -bld -bmG -boi -bpu -bfJ -brH -bte -bui -bvu -bwu -bvu -byS -bAb -byU -biL -biL -bDP -biL -biL -biL +bez +bfO +bfL +biJ +bjX +blf +bmI bok -biL -bok -bKL -bLv -bLv -biL +bpw +bfL +brJ +btg +buj +bvv +bwv +bvv +byT +bAc +byV +biN +biN +bDQ +biN +biN +biN +bom +biN +bom +bKM +bLw +bLw +biN aaa aaa aaa @@ -105180,12 +105154,12 @@ adI aeO aen afG -agi +agj afG -agY -ahJ +aha +ahL aen -ajm +ajo aen aeO aaa @@ -105194,62 +105168,62 @@ aad aad aad aae -asP +asS aab -arK -axR -axR -axR -axR -axR -aGb -aHV -aJx -aLl -aNf -aNf -aQv -aRX -aTD -aUL -aWs -aOM -aOM -aOM -aOM -aOM -aOM -bfM -bfJ -biI -bjW -ble -bmH -bjW -bpv -bfJ -brJ -btf -buj -bvv -bwv -bxH -bxH -bAc -bBc -byW -bAe -bDQ -bok -bok -bGS -bok -biL -bok -bKL -bLv -bLv -biL +arN +axU +axU +axU +axU +axU +aGe +aHY +aJA +aLo +aNi +aNi +aQy +aSa +aTG +aUN +aWu +aOP +aOP +aOP +aOP +aOP +aOP +bfO +bfL +biK +bjY +blg +bmJ +bjY +bpx +bfL +brL +bth +buk +bvw +bww +bxI +bxI +bAd +bBd +byX +bAf +bDR +bom +bom +bGT +bom +biN +bom +bKM +bLw +bLw +biN aaa aaa aaa @@ -105438,9 +105412,9 @@ aad aen aen adH -agB +agD ael -ahK +ahM aen aen adI @@ -105451,62 +105425,62 @@ aaa aaa aad aae -asQ +asT aab -awd -axR -axR -axR -axR -axR -arK -aHW -aJx -aLm -axP -axP -aMX -aRY -aTE -aUM -aWt -aOM -aXK -bap -bbI -bdc -aOM -bfM -bfJ -biJ -bjX -blf -bmI -bjX -bpw -bfJ -brK -btg -buk -bvw -bww -bxI -byT -bAd +awg +axU +axU +axU +axU +axU +arN +aHZ +aJA +aLp +axS +axS +aNa +aSb +aTH +aUO +aWv +aOP +aXM +bar +bbK +bde +aOP +bfO +bfL +biL +bjZ +blh +bmK +bjZ +bpy +bfL +brM +bti +bul +bvx +bwx +bxJ byU -byY -biL -bDR -biL -biL -biL -bwA -biL -bJM -bKL -bLv -bMq -biL +bAe +byV +byZ +biN +bDS +biN +biN +biN +bwB +biN +bJN +bKM +bLw +bMr +biN aaa aaa aaa @@ -105696,11 +105670,11 @@ aen afJ aen aem -agX +agZ aeO -aix -ahL -aix +aiz +ahN +aiz aeO aeO aeO @@ -105711,59 +105685,59 @@ aae aad aab aab -axS -arK -axS -arK -axS -arK -aGb -aJy -aLn -aNg -aOL -aQw -aRZ -aTF -aQw -aWu -aXI -aZf -baq -bbJ -bdd -aOM -bev -bfJ -bfJ -bfJ -bfJ -bfJ -bfJ -bfJ -bfJ -brL -bth -bth -bvx +axV +arN +axV +arN +axV +arN +aGe +aJB +aLq +aNj +aOO +aQz +aSc +aTI +aQz +aWw +aXK +aZh +bas +bbL +bdf +aOP +bex +bfL +bfL +bfL +bfL +bfL +bfL +bfL +bfL +brN btj btj -byU -byU -byU -bBZ -bok -blg -biL +bvy +btl +btl +byV +byV +byV +bCa +bom +bli +biN aab -biL -bok -biL -bok -bKL -bLv -bLv -biL +biN +bom +biN +bom +bKM +bLw +bLw +biN aaa aaa aab @@ -105955,14 +105929,14 @@ adG aen afn aeO -aiy +aiA adm ael adn adn -amQ +amT adI -aoX +apa aad aae aad @@ -105974,53 +105948,53 @@ aab aab aab aab -aGb -aJz -anK -aNh -aOM -aQx -aSa -aTG -aTG -aWv -aOM -aZg -bar -bbK -bde -aOM -bfN -bhj -biK -biK -biK -bmJ -boj -bpx -bqE -brM -bti -bul -bvy -bwx -btj -byV -bok -bok -byY -bok -bok -biL +aGe +aJC +anN +aNk +aOP +aQA +aSd +aTJ +aTJ +aWx +aOP +aZi +bat +bbM +bdg +aOP +bfP +bhl +biM +biM +biM +bmL +bol +bpz +bqG +brO +btk +bum +bvz +bwy +btl +byW +bom +bom +byZ +bom +bom +biN aab -biL -bok -biL -bok -bKL -bLv -bLv -biL +biN +bom +biN +bom +bKM +bLw +bLw +biN aaa aab aab @@ -106212,72 +106186,72 @@ aeO aeO aeO aeO -aiy +aiA ael -akb -akW +akd +akZ adl adI adE -aoY +apb aad -ary +arB aad aad aad aad aad -aAK -aAK -aAK -aAK -aAK -aJA -aLo -aNi -aOM -aQy -aSb -aTH -aUN -aWw -aXJ -aXK -bas -bbL -bdf -aOM -bfO -aQt -biL -biL -blg -bmK -boj -bpy -bqF -brN -btj -bul -bvy -bwy -btj -byW -bAe -bAe -bCa -blj -blj -biL +aAN +aAN +aAN +aAN +aAN +aJD +aLr +aNl +aOP +aQB +aSe +aTK +aUP +aWy +aXL +aXM +bau +bbN +bdh +aOP +bfQ +aQw +biN +biN +bli +bmM +bol +bpA +bqH +brP +btl +bum +bvz +bwz +btl +byX +bAf +bAf +bCb +bll +bll +biN aab -biL -bok -biL -bok -bKL -bLt -bLt -biL +biN +bom +biN +bom +bKM +bLu +bLu +biN aab aab aab @@ -106468,73 +106442,73 @@ aah aah aah aah -ahL +ahN adl ael adl adl -alR +alU aen -anJ +anM aen aad -arz +arC aah aah aah aah abG -aAL -aCm -aEe -aGc -aAK -aJz -anK -aNh -aOM -aQz -aSc -aSc -aUO -aSc -aSc -aZh -bat -bat -bdg -aOM -bfP -bds -aWo -biL -blh -bmK -boj -bpz -bqG -brO -btk -bum -bvz -bwz -btj -byX -biL -biL -biL -biL -biL -biL +aAO +aCp +aEh +aGf +aAN +aJC +anN +aNk +aOP +aQC +aSf +aSf +aUQ +aSf +aSf +aZj +bav +bav +bdi +aOP +bfR +bdu +aWq +biN +blj +bmM +bol +bpB +bqI +brQ +btm +bun +bvA +bwA +btl +byY +biN +biN +biN +biN +biN +biN aab -biL -bok -biL -bJM -bKL -bLt -bMr -biL +biN +bom +biN +bJN +bKM +bLu +bMs +biN aab aab aaa @@ -106726,12 +106700,12 @@ aad aad aad aeO -aiz +aiB adE ael -akX -agX -aiy +ala +agZ +aiA adI aen aad @@ -106741,57 +106715,57 @@ aad aad aad aad -aAK -aCn -aEf -aGd -aAK -aJB -aLp -aNj -aOM -aQA -aSd -aTI -aUP -aWx -aXK -aXK -aXK -aXK -aXK -bey -bfQ -aRV -biM -aQt -bli -bmK -boj -boj -boj -brP -btj -btj -btj -btj -btj -byY -byV -biL +aAN +aCq +aEi +aGg +aAN +aJE +aLs +aNm +aOP +aQD +aSg +aTL +aUR +aWz +aXM +aXM +aXM +aXM +aXM +beA +bfS +aRY +biO +aQw +blk +bmM +bol +bol +bol +brR +btl +btl +btl +btl +btl +byZ +byW +biN aab aab aab aab aab -biL -bok -biL -bok -bKL -bLt -bLt -biL +biN +bom +biN +bom +bKM +bLu +bLu +biN aab aab aaa @@ -106998,57 +106972,57 @@ aab aab aab aab -aAK -aCo -aEf -aGe -aAK -aJC -aLq -aNk -aON -aQB -aSe -aTJ -aUQ -aWy -aXL -aZi -bau -bbM -bdh -aOM -bfR -bhk +aAN +aCr +aEi +aGh +aAN +aJF +aLt +aNn +aOQ +aQE +aSh +aTM +aUS +aWA +aXN +aZk +baw +bbO +bdj +aOP +bfT +bhm +biP +aQw +bll +bmM +bom +bom +bom +bom +bom +bom +bom +bwB +bom +bmM +bAg biN -aQt -blj -bmK -bok -bok -bok -bok -bok -bok -bok -bwA -bok -bmK -bAf -biL aab aab aaa aab aab -biL -bok -biL -bok -bKL -bLt -bLt -biL +biN +bom +biN +bom +bKM +bLu +bLu +biN aab aab aaa @@ -107255,57 +107229,57 @@ aab aab aab aab -aAK -aCp -aEg -aGf -aAK -aJD -aEo -aNl -aOM -aOM -aOM -aOM -aOM -aOM -aOM -aOM -aOM -aOM -aOM -aOM -aOQ -aOQ -biO -aZu -blj -bmL -biK -biK -biK -biK -biK -biK -bvA -bwB -biK -byZ -blg -biL +aAN +aCs +aEj +aGi +aAN +aJG +aEr +aNo +aOP +aOP +aOP +aOP +aOP +aOP +aOP +aOP +aOP +aOP +aOP +aOP +aOT +aOT +biQ +aZw +bll +bmN +biM +biM +biM +biM +biM +biM +bvB +bwC +biM +bza +bli +biN aab aab aab aab aab -biL -bok -biL -bJM -bKL -bLt -bMr -biL +biN +bom +biN +bJN +bKM +bLu +bMs +biN aab aab aab @@ -107512,57 +107486,57 @@ aab aab aab aab -aAK -aCq -aEh -aEh -aAK -aJE -aLr -aNm -aOO -aQC -aSf -aTK -aUR -aWz -aXM -aZj -bav -bbN -bdi -bez -bfS -aOQ -bfO -aZu -biL -bmM -bol -bol -bqH -biL -biL -biL -biL -biL -biL -biL -biL -biL +aAN +aCt +aEk +aEk +aAN +aJH +aLu +aNp +aOR +aQF +aSi +aTN +aUT +aWB +aXO +aZl +bax +bbP +bdk +beB +bfU +aOT +bfQ +aZw +biN +bmO +bon +bon +bqJ +biN +biN +biN +biN +biN +biN +biN +biN +biN aab aab aaa aab aab -biL -bok -biL -bok -bKL -bLt -bLt -biL +biN +bom +biN +bom +bKM +bLu +bLu +biN aab aab aab @@ -107765,34 +107739,34 @@ aab aab aab aab -auA +auD aab aab aab -aAK -aCr -aEi -aGg -aAK -aJF -aLs -aNn -aOP -aQD -aSg -aTL -aUS -aWA -aXN -aZk -baw -bbO -bdj -bav -bfT -aOQ -bfO -aZu +aAN +aCu +aEl +aGj +aAN +aJI +aLv +aNq +aOS +aQG +aSj +aTO +aUU +aWC +aXP +aZm +bay +bbQ +bdl +bax +bfV +aOT +bfQ +aZw aaa aab aab @@ -107812,14 +107786,14 @@ aab aaa aab aab -biL -bok -biL -bok -bKL -bLt -bLt -biL +biN +bom +biN +bom +bKM +bLu +bLu +biN aaa aab aab @@ -108018,38 +107992,38 @@ aab aab aab aab -anK -aqh -arA -asR -anK -aqh -axT -asR -aAK -aCs -aEj -aGh -aHX -aJG -aLt -aNo -aOQ -aQE -aSh -aTM -aSh -aWB -aXO -aZl -bav -bav -bav -bav -bav -aOQ -biP -aZu +anN +aqk +arD +asU +anN +aqk +axW +asU +aAN +aCv +aEm +aGk +aIa +aJJ +aLw +aNr +aOT +aQH +aSk +aTP +aSk +aWD +aXQ +aZn +bax +bax +bax +bax +bax +aOT +biR +aZw aab aab aab @@ -108069,14 +108043,14 @@ aaa aaa aaa aab -biL -bIh -biL -bok -bKI -bLw -bok -biL +biN +bIi +biN +bom +bKJ +bLx +bom +biN aaa aaa aaa @@ -108274,39 +108248,39 @@ aab aab aab aab -anK -anK -aqi -arB -asS -auB -awe -axU -azp -aAK -aAK -aAK -aAK -aAK -aJH -aLu -aNp -aOO -aQF -aSi -aQF -aUT -aWC -aXP -aZm -aOO -bbP -bdk -beA -bfU -bhl -bfO -aZu +anN +anN +aql +arE +asV +auE +awh +axX +azs +aAN +aAN +aAN +aAN +aAN +aJK +aLx +aNs +aOR +aQI +aSl +aQI +aUV +aWE +aXR +aZo +aOR +bbR +bdm +beC +bfW +bhn +bfQ +aZw aab aab aab @@ -108326,14 +108300,14 @@ aaa aaa aaa aab -biL -biL -biL -biL -biL -biL -biL -biL +biN +biN +biN +biN +biN +biN +biN +biN aaa aaa aaa @@ -108531,39 +108505,39 @@ aab aab aab aab -anK -aoZ -aqj -arC -asT -auC -awf -axV -azq -aAM -aCt -aEk -aGi -aHY -aJI -aLv -aNp -aOR -aQG -aSh -aTN -aUU -aWD -aXQ -aZn -aOR -bbQ -bdl -beB -bfV -anK -bfO -aZu +anN +apc +aqm +arF +asW +auF +awi +axY +azt +aAP +aCw +aEn +aGl +aIb +aJL +aLy +aNs +aOU +aQJ +aSk +aTQ +aUW +aWF +aXS +aZp +aOU +bbS +bdn +beD +bfX +anN +bfQ +aZw aab aab aab @@ -108571,11 +108545,11 @@ aab aab aab aab -anK -anK -anK -anK -anK +anN +anN +anN +anN +anN aaa aaa aaa @@ -108788,58 +108762,58 @@ aab aab aab aab -anL -apa -aqk -aqk -asU -aqk -aqk -aqk -azr -aAN -aCu -aEl -aGj -aHZ -aJI -aLw -aNp -aOP -aQF -aSi -aQF -aUV -aWC -aXR -aZo -aOP -bbR -bdm -beC -bfW -anK -bfO -aZu +anO +apd +aqn +aqn +asX +aqn +aqn +aqn +azu +aAQ +aCx +aEo +aGm +aIc +aJL +aLz +aNs +aOS +aQI +aSl +aQI +aUX +aWE +aXT +aZq +aOS +bbT +bdo +beE +bfY +anN +bfQ +aZw aab aab aab aab aab -anK -anK -anK -bvB -bwC -bxJ -anK -anK -anK -anK -anK -anK -anK -anK +anN +anN +anN +bvC +bwD +bxK +anN +anN +anN +anN +anN +anN +anN +anN aaa aaa aaa @@ -109045,68 +109019,68 @@ aab aab aab aab -anM -apb -aql -arD -asV -asV -awg -axW -azs -anK -aCv -aEm -aGk -auB -aJJ -aLu -aNq -aOQ -aQH -aSj -aTO -aOQ -aWE -aXS -aWE -aOQ -bbS -bdn -anK -anK -anK -biQ -anK -blk -bmN -bom -bpA -bqI -anK -anK -bun -bvC -bwD -bxK -bza -anK -bBd -bBd -bBd -bBd -bER -anK -aZu -aZu -aZu -aZu -aZu -aZu -aZu -aZu -aZu -aZu +anP +ape +aqo +arG +asY +asY +awj +axZ +azv +anN +aCy +aEp +aGn +auE +aJM +aLx +aNt +aOT +aQK +aSm +aTR +aOT +aWG +aXU +aWG +aOT +bbU +bdp +anN +anN +anN +biS +anN +blm +bmP +boo +bpC +bqK +anN +anN +buo +bvD +bwE +bxL +bzb +anN +bBe +bBe +bBe +bBe +bES +anN +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw aaa aaa aaa @@ -109302,68 +109276,68 @@ aab aab aab aab +anQ +apf +aqo +arH +asZ +auG +awk +aqo +azw anN -apc -aql -arE -asW -auD -awh -aql -azt -anK -aCw -aEn -aGl -aIa -aJK -aLx -aNr -aOS -aQI -aSk -aSk -aSk -aWF -aXT -aSk -bax -aSk -bdo -beD -bfX -bhm -biR -bjY -bll -aql -bon -aql -aJM -brQ -aql -aJK -bvD -aEo -aEo -bzb -anK -bBd -bBd -bCX -bDS -bBd -aZu -bGT -bIi -bIW -bIi -bKM -aRV -aZu -bMT -aRV -aZu +aCz +aEq +aGo +aId +aJN +aLA +aNu +aOV +aQL +aSn +aSn +aSn +aWH +aXV +aSn +baz +aSn +bdq +beF +bfZ +bho +biT +bka +bln +aqo +bop +aqo +aJP +brS +aqo +aJN +bvE +aEr +aEr +bzc +anN +bBe +bBe +bCY +bDT +bBe +aZw +bGU +bIj +bIX +bIj +bKN +aRY +aZw +bMU +aRY +aZw aaa aaa aaa @@ -109558,69 +109532,69 @@ acs aab aab aab -amR -anK -apd -aqm -arF -asX -auE -awi -axX -azu -aAO -aCx -aCx -aCx -aIb -aJL -aLy -aNs -aOT -aQJ -aSl -aTP -aSl -aWG -aXU -aSl -bay -aQJ -bdp -anK -bfY -anK -biS -bjZ -blm -bmO -boo -bmO -bmO -brR -bmO -aJG -bvE -bwE -bxL -bzc -anK -bBd -bBd -bBd -bDT -bBd -aZu -bGU -bIj -bIX -bIj -bKN +amU +anN +apg +aqp +arI +ata +auH +awl +aya +azx +aAR +aCA +aCA +aCA +aIe +aJO +aLB +aNv +aOW +aQM +aSo +aTS +aSo +aWI +aXW +aSo +baA +aQM +bdr +anN +bga +anN +biU +bkb +blo +bmQ +boq +bmQ +bmQ +brT +bmQ +aJJ +bvF +bwF +bxM +bzd +anN bBe -bMs bBe -bNA -aZu +bBe +bDU +bBe +aZw +bGV +bIk +bIY +bIk +bKO +bBf +bMt +bBf +bNB +aZw aaa aaa aaa @@ -109816,68 +109790,68 @@ aab aab aab aab -anO -ape -aql -arG -asY -auF -awj -aql -azv -anK -aCy -aEo -aGm -aIc -aJM -aJM -aJM -aOU -aQK -aSm -aTQ -aEo -aWH -aXV -aJM -baz -aQK -aCy -beE -bfZ -bhn -aql -bka -bln -aql -bop -aql -bqJ -brS -btl -aCy -aEo -aEo -bxM -bzd -anK -bBd -bBd -bCY -bDS -bBd -aZu -bGV -aZu -aZu -aZu -aZu -aZu -aZu -bMU -bNB -aZu +anR +aph +aqo +arJ +atb +auI +awm +aqo +azy +anN +aCB +aEr +aGp +aIf +aJP +aJP +aJP +aOX +aQN +aSp +aTT +aEr +aWJ +aXX +aJP +baB +aQN +aCB +beG +bgb +bhp +aqo +bkc +blp +aqo +bor +aqo +bqL +brU +btn +aCB +aEr +aEr +bxN +bze +anN +bBe +bBe +bCZ +bDT +bBe +aZw +bGW +aZw +aZw +aZw +aZw +aZw +aZw +bMV +bNC +aZw aaa aaa aaa @@ -110073,68 +110047,68 @@ aab aab aab aab -anP -apb -aql -aql -asZ -asZ -awk -axY -azw -aAP -aAP -aAP -aAP -aAP -aJN -aLz -aNt -aOV -aQL -anK -aTR -aUW -aWI -aWI -aWI -baA -aWI -aWI -aWI -aWI -auB -biT -auB -blo -bmP -boq -bpB -bqI -anK -anK -buo -bvF -bwF -bxN -bze -anK -bBd -bBd -bBd -bBd -bBd -anK -bGV -aZu +anS +ape +aqo +aqo +atc +atc +awn +ayb +azz +aAS +aAS +aAS +aAS +aAS +aJQ +aLC +aNw +aOY +aQO +anN +aTU +aUY +aWK +aWK +aWK +baC +aWK +aWK +aWK +aWK +auE +biV +auE +blq +bmR +bos +bpD +bqK +anN +anN +bup +bvG +bwG +bxO +bzf +anN +bBe +bBe +bBe +bBe +bBe +anN +bGW +aZw aaa aaa aaa aaa -aZu -aZu -aZu -aZu +aZw +aZw +aZw +aZw aaa aaa aaa @@ -110330,60 +110304,60 @@ aab aab aab aab -anQ -apf -aqk -aqk -ata -aqk -aqk -aqk -azx -aAP -aCz -aEp -aGn -aAP -aJO -aLA -aNu -aOW -aQM -aAP -aTS -axY -aWI -aXW -aZp -baB -bbT -baE -baE -aWI -bho -bhr -bkb -blp -bmQ -bor -bmT -bqK -anK -anK -anK -bvG -bwG -bxO -bzf -anK -anK -anK -anK -anK -anK -anK -bGV -aZu +anT +api +aqn +aqn +atd +aqn +aqn +aqn +azA +aAS +aCC +aEs +aGq +aAS +aJR +aLD +aNx +aOZ +aQP +aAS +aTV +ayb +aWK +aXY +aZr +baD +bbV +baG +baG +aWK +bhq +bht +bkd +blr +bmS +bot +bmV +bqM +anN +anN +anN +bvH +bwH +bxP +bzg +anN +anN +anN +anN +anN +anN +anN +bGW +aZw aaa aaa aaa @@ -110587,60 +110561,60 @@ aab aab aab aaa -anK -apg -aqn -arH -atb -auG -awl -axZ -azy -aAP -aCA -aEq -aGo -aAP -aJP -aLB -aNv -aOX -aQN -aSn -aTT -aUX -aWI -aXX -aZq -baC -bbU -bdq -beF -bga -bhp -bhp -bkb -blq -bmR -bos -bpC -bqL -bkc +anN +apj +aqq +arK +ate +auJ +awo +ayc +azB +aAS +aCD +aEt +aGr +aAS +aJS +aLE +aNy +aPa +aQQ +aSq +aTW +aUZ +aWK +aXZ +aZs +baE +bbW +bds +beH +bgc +bhr +bhr +bkd +bls +bmT +bou +bpE +bqN +bke aab -anK -anK -anK -anK -bzg -bAg -bBe -bBe -bBe -bBe -bBe -bBe -bGW -aZu +anN +anN +anN +anN +bzh +bAh +bBf +bBf +bBf +bBf +bBf +bBf +bGX +aZw aaa aaa aaa @@ -110844,60 +110818,60 @@ aab aab aab aaa -anK -anK -aqo -arI -atc -auB -awm -aya -azz -aAP -aCB -aEr -aCB -aAP -aJQ -aLC -aNw -aOY -aQO -aSo -aTU -aUY -aWI -aXY -aZr -baD -bbV -bdr -beG -aWI -bhq -bhr -bkb -blr -bmS -bot -bpD -bqM -bkc +anN +anN +aqr +arL +atf +auE +awp +ayd +azC +aAS +aCE +aEu +aCE +aAS +aJT +aLF +aNz +aPb +aQR +aSr +aTX +aVa +aWK +aYa +aZt +baF +bbX +bdt +beI +aWK +bhs +bht +bkd +blt +bmU +bov +bpF +bqO +bke aab aab aaa aaa -aZu -aZu -aZu -aZu -aZu -aZu -aZu -aZu -aZu -aZu -aZu +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw +aZw aaa aaa aaa @@ -111102,44 +111076,44 @@ aab aaa aaa aaa -anK -aqp -arJ -atd -anK -aqh -arA -atd -aAP -aCC -aEs -aGp -aAP -aJR -aLD -aNx -aOZ -aQP -aAP -aTV -aUZ -aWI -aXZ -aZs -baE -aWI -aWI -aWI -aWI -aQt -bhr -bkb -bls -bmT -bou -bmT -bmT -brT +anN +aqs +arM +atg +anN +aqk +arD +atg +aAS +aCF +aEv +aGs +aAS +aJU +aLG +aNA +aPc +aQS +aAS +aTY +aVb +aWK +aYb +aZu +baG +aWK +aWK +aWK +aWK +aQw +bht +bkd +blu +bmV +bow +bmV +bmV +brV aab aab aab @@ -111363,40 +111337,40 @@ aab aab aab aab -auH +auK aab aab aab -aAP -aCD -aEs -aGq -aAP -aJS -aLE -aNy -aPa -aQQ -aAP -aTW -aVa -aSp -aSp -aSp -aSp -aSp -aSp -aSp -aSp -aQt -biU -bkb -blt -bmU -bov -bpE -bqN -brU +aAS +aCG +aEv +aGt +aAS +aJV +aLH +aNB +aPd +aQT +aAS +aTZ +aVc +aSs +aSs +aSs +aSs +aSs +aSs +aSs +aSs +aQw +biW +bkd +blv +bmW +box +bpG +bqP +brW aab aab aab @@ -111624,36 +111598,36 @@ aab aab aab aab -aAP -aCE -aEs -aGr -aAP -aJT -aLE -aLE -aPb -aQR -aAP -aTX -aVb -aWJ -aSp -aZt -aZt -aZt -aZt -aZt -aSp -aQt -bhr -bkc -blu -bmV -bow -bpF -bqO -bkc +aAS +aCH +aEv +aGu +aAS +aJW +aLH +aLH +aPe +aQU +aAS +aUa +aVd +aWL +aSs +aZv +aZv +aZv +aZv +aZv +aSs +aQw +bht +bke +blw +bmX +boy +bpH +bqQ +bke aab aab aab @@ -111881,30 +111855,30 @@ aab aab aab aab -aAP -aCF -aEt -aGs -aAP -aJU -aLE -aJU -aPc -aQS -aAP -aTY +aAS +aCI +aEw +aGv +aAS +aJX +aLH +aJX +aPf +aQV +aAS aUb -aUb -aSp -aZt -aZt -aZt -aZt -aZt -aSp -aQt -bhr -aZu +aUe +aUe +aSs +aZv +aZv +aZv +aZv +aZv +aSs +aQw +bht +aZw aab aab aab @@ -112138,30 +112112,30 @@ aaa aab aab aab -aAP -aCG -aEu -aGt -aAP -aJV -aLF -aNz -aPd -aQT -aAP -aTZ -aVc -aUb -aSp -aZt -aZt -aZt -aZt -aZt -aSp -aQt -bhr -aZu +aAS +aCJ +aEx +aGw +aAS +aJY +aLI +aNC +aPg +aQW +aAS +aUc +aVe +aUe +aSs +aZv +aZv +aZv +aZv +aZv +aSs +aQw +bht +aZw aab aab aab @@ -112395,30 +112369,30 @@ aaa aab aab aab -aAP -aAP -aAP -aGu -aAP -aJW -aLG -aNA -aPe -aQU -aAP -aUa -aUb -aUb -aSp -aZt -aZt -aZt -aZt -aZt -aSp -aQt -biV -aZu +aAS +aAS +aAS +aGx +aAS +aJZ +aLJ +aND +aPh +aQX +aAS +aUd +aUe +aUe +aSs +aZv +aZv +aZv +aZv +aZv +aSs +aQw +biX +aZw aab aab aab @@ -112652,30 +112626,30 @@ aaa aaa aab aab -aAQ -aCH -aEv -aGv -aId -aId -aId -aId -aPf -aQV -aAP -aUb -aVd -aWK -aSp -aZt -aZt -aZt -aZt -aZt -aSp -aQt -biW -aZu +aAT +aCK +aEy +aGy +aIg +aIg +aIg +aIg +aPi +aQY +aAS +aUe +aVf +aWM +aSs +aZv +aZv +aZv +aZv +aZv +aSs +aQw +biY +aZw aab aab aab @@ -112909,30 +112883,30 @@ aaa aaa aaa aab -aAR -aCI -aEw -aGw -aGw -aGw -aGw -aGw -aPg -aQW -aAP -aUc -aSp -aSp -aSp -aSp -aSp -aSp -aSp -aSp -aSp -aQt -aRV -aZu +aAU +aCL +aEz +aGz +aGz +aGz +aGz +aGz +aPj +aQZ +aAS +aUf +aSs +aSs +aSs +aSs +aSs +aSs +aSs +aSs +aSs +aQw +aRY +aZw aaa aab aab @@ -113166,30 +113140,30 @@ aaa aaa aaa aab +aAV +aCM +aEA +aGA +aIh +aKa +aLK +aNE +aPk +aRa aAS -aCJ -aEx -aGx -aIe -aJX -aLH -aNB -aPh -aQX -aAP -aUb -aUb -aUb -aYa -aQt -aQt -aQt -aQt -aQt -aQt -aQt -bhr -aZu +aUe +aUe +aUe +aYc +aQw +aQw +aQw +aQw +aQw +aQw +aQw +bht +aZw aaa aaa aab @@ -113423,30 +113397,30 @@ aaa aaa aaa aaa -aAP -aCK -aEy -aGy -aAP -aAP -aAP -aCK -aEy -aQY -aAP -aUd -aUb -aWL -aYb -aRV -baF -aRV -bds -aRV -bgb -bhr -aRV -aZu +aAS +aCN +aEB +aGB +aAS +aAS +aAS +aCN +aEB +aRb +aAS +aUg +aUe +aWN +aYd +aRY +baH +aRY +bdu +aRY +bgd +bht +aRY +aZw aaa aaa aaa @@ -113682,28 +113656,28 @@ aaa aaa aab aab -aEz +aEC aab aaa aaa aaa aab -aEz +aEC aab -aSp -aUe -aVe -aWM -aSp -aZu -aZu -aZu -aZu -aZu -aZu -bhs -aZu -aZu +aSs +aUh +aVg +aWO +aSs +aZw +aZw +aZw +aZw +aZw +aZw +bhu +aZw +aZw aaa aaa aaa @@ -113947,19 +113921,19 @@ aab aab aab aab -aSp -aSp -aSp -aSp -aSp +aSs +aSs +aSs +aSs +aSs aaa aaa aaa aaa -aZu -bgc -aRV -aZu +aZw +bge +aRY +aZw aaa aaa aab @@ -114213,10 +114187,10 @@ aaa aaa aaa aaa -aZu -bgd -bht -aZu +aZw +bgf +bhv +aZw aaa aab aab @@ -114470,10 +114444,10 @@ aaa aaa aaa aaa -aZu -bge -bhu -aZu +aZw +bgg +bhw +aZw aaa aab aab @@ -114727,10 +114701,10 @@ aaa aaa aaa aaa -aZu -aZu -aZu -aZu +aZw +aZw +aZw +aZw aaa aab aab @@ -114988,9 +114962,9 @@ aaa aaa aaa aab -biX -biX -biX +biZ +biZ +biZ aab aab aab @@ -115244,11 +115218,11 @@ aaa aab aab aab -biX -biX -biX -biX -biX +biZ +biZ +biZ +biZ +biZ aaa aaa aab @@ -115501,11 +115475,11 @@ aab aab aab aab -biX -biX -blv -biX -biX +biZ +biZ +blx +biZ +biZ aaa aab aab @@ -115758,11 +115732,11 @@ aab aaa aaa aab -biX -biX -blw -biX -biX +biZ +biZ +bly +biZ +biZ aaa aaa aab @@ -116015,11 +115989,11 @@ aaa aaa aaa aab -biX -biX -blx -biX -biX +biZ +biZ +blz +biZ +biZ aaa aab aab @@ -116272,11 +116246,11 @@ aaa aaa aaa aaa -biX -biX -biX -biX -biX +biZ +biZ +biZ +biZ +biZ aaa aab aab @@ -116530,9 +116504,9 @@ aab aaa aaa aab -biX -biX -biX +biZ +biZ +biZ aab aaa aab diff --git a/maps/aurora/aurora-5_interstitial.dmm b/maps/aurora/aurora-5_interstitial.dmm index f71646605bc..2cca6fe7d43 100644 --- a/maps/aurora/aurora-5_interstitial.dmm +++ b/maps/aurora/aurora-5_interstitial.dmm @@ -1825,6 +1825,9 @@ /obj/effect/floor_decal/corner/blue{ dir = 5 }, +/obj/machinery/light{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/security/range) "dt" = ( @@ -3105,10 +3108,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/ramp/bottom{ - icon_state = "rampbot"; - dir = 4 - }, +/turf/simulated/floor/tiled, /area/security/training) "gs" = ( /obj/effect/floor_decal/corner/blue{ @@ -3248,10 +3248,7 @@ /area/security/training) "gH" = ( /obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/ramp/bottom{ - icon_state = "rampbot"; - dir = 4 - }, +/turf/simulated/floor/tiled, /area/security/training) "gI" = ( /obj/effect/floor_decal/corner/blue{ @@ -7407,6 +7404,38 @@ "rs" = ( /turf/simulated/wall, /area/maintenance/library) +"rt" = ( +/obj/effect/floor_decal/corner/blue{ + icon_state = "corner_white"; + dir = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"ru" = ( +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/security/range) +"rv" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/security/investigations) +"rw" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/open, +/area/security/training) (1,1,1) = {" aa @@ -35032,22 +35061,22 @@ aa ad ar ar -oH -oU -ph -pt -pG +or +or +or +or +or ar -qb -qe -qi -ql -qp +or +or +or +or +or ar aN aw aw -qU +or bi br bE @@ -35294,17 +35323,17 @@ ay ay ay ay -pR +or aG aG aG aG aG -qv +or aM aw aW -qV +or bj bs bF @@ -35545,23 +35574,23 @@ aa aa aa ar -os +or ay ay ay ay ay -pS +or aG aG aG aG aG -qw +or aw aw aw -qW +or aw bt aw @@ -35802,7 +35831,7 @@ aa aa ad ar -ot +or ay ay ay @@ -35814,7 +35843,7 @@ aG aG aG aG -qx +or aM aw aW @@ -36059,23 +36088,23 @@ aa aa aa ar -ou +or ay ay ay ay ay -pT +or aG aG aG aG aG -qy +or aw aw aw -qX +or aw aw aw @@ -36316,23 +36345,23 @@ aa aa aa ar -ov +or ay ay ay ay ay -pU +or aG aG aG aG aG -qz +or aM aw aW -qY +or bk aw bH @@ -36574,22 +36603,22 @@ aa ad ar ar -oI -oV +or +or ar -pu -pH +or +or ar -qc -qf +or +or ar -qm -qq +or +or ar aN aw aw -qZ +or aO bv aX @@ -37301,7 +37330,7 @@ aa aa aa aa -aa +ab aa aa aa @@ -37557,7 +37586,7 @@ aa aa aa aa -aa +ab aa aa aa @@ -37812,11 +37841,11 @@ aa aa aa aa +ab aa -aa -aa -aa -aa +ab +ab +ab aa aa aa @@ -38068,12 +38097,12 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab aa aa aa @@ -38325,13 +38354,13 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -38581,23 +38610,23 @@ aa aa aa aa +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab aa aa aa @@ -38838,27 +38867,27 @@ aa aa aa aa +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa +ab +ab +ab +ab +ab +ab aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab aa aa aa @@ -39099,24 +39128,24 @@ db dn dz dR -ej -eB -eT -fl -fD -aa -aa -aa -aa -aa -aa -aa -aa +db +dn +dz +dR +db aa aa aa aa +ab +ab +ab +ab +ab +ab +ab aa +ab aa aa aa @@ -39352,27 +39381,27 @@ aa aa aa aa -dc +db do dA -dS +dA ek -eC -eU +rt +dA fm -fE -aa -aa -aa -aa -aa -aa -aa -aa +db aa aa aa aa +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -39609,28 +39638,28 @@ aa aa aa aa -dd +db dp dB dT -el -eD +db +en eV -fn -fF -fV -gl -gB -gR -hh +en +db +dk +dk +dk +dk +dk hI ij -iK +dk jl -jM -kn -kN -ln +dk +hI +ij +dk aa aa aa @@ -39866,20 +39895,20 @@ aa aa aa aa -de +db dq dC dU em eE -eW +eF fo -fG +db fW gm gC gS -hi +dk hJ ik iL @@ -39887,7 +39916,7 @@ jm jN ko kO -lo +dk aa aa aa @@ -40123,20 +40152,20 @@ aa aa aa aa -df +db dr -dD -dV +dC +dU en eF -eX +eF fp -fH +db fX gn gD gT -hj +dk hK il iM @@ -40144,7 +40173,7 @@ jn jO kp kP -lp +dk aa aa aa @@ -40380,28 +40409,28 @@ aa aa aa aa -dg +db ds -dE -dW -eo -eG -eY -fq -fI -fY +dC +dU +em +eE +eF +fo +db +fX go gE gU -hk +dk hL im -iN +iM jo jP kq kQ -lq +dk aa aa aa @@ -40637,28 +40666,28 @@ aa aa aa aa -dh +db dt dF -dX -ep -eH -eZ +dU +en +eF +eF fr -fJ +db fZ gp gF gV -hl +dk hM in iO -jp -jQ +jn +jO kr kR -lr +dk aa aa aa @@ -40894,28 +40923,28 @@ aa aa aa aa -di +db du dG -dY -eq -eI +dU +em +ru fa -fs -fK +fo +db ga gq gG gW -hm -hN -io +dk +hJ +in iP jq jR ks kS -ls +dk aa aa aa @@ -41151,28 +41180,28 @@ aa aa aa aa -dj +db dv dH dZ -er -eJ -fb -ft -fL +db +db +db +db +db gb gr gH -gX -hn +gb +dk hO ip -iQ -jr -jS +ip +eu +dk kt kT -lt +dk aa aa aa @@ -41416,23 +41445,23 @@ es eK fc fu -fM +eK gc gs -gI -gY +eK +eK ho -hP -iq -iR +eK +eK +eK js jT -ku +gs kU -lu -lN -mb -mk +dk +dk +dk +dk aa aa aa @@ -41665,31 +41694,31 @@ aa aa aa aa -dl +dk dx dJ eb -et +eb eL fd -fv +eb fN -gd +eb gt -gJ -gZ +eb +eb hp -hQ -ir +eb +eb iS jt jU kv kV lv -lO -mc -ml +rw +lP +dk aa aa aa @@ -41922,31 +41951,31 @@ aa aa aa aa -dm -dy -dK +dk +dk +dk ec eu eM fe -fw +eu fO ge gu gK -ha -hq -hR -is -iT +fO +ge +gu +gK +dk ju jV kw kW lw lP -md -mm +lP +dk aa aa aa @@ -42181,7 +42210,7 @@ aa aa aa aa -dL +dk ed ev eN @@ -42195,15 +42224,15 @@ hb hr hS it -iU -jv -jW -kx -kX +dk +dk +dk +dk +dk lx -lQ -me -mn +dk +dk +dk aa aa aa @@ -42438,7 +42467,7 @@ aa aa aa aa -dM +dk ee ew eO @@ -42452,13 +42481,13 @@ hc hs hT iu -iV +dk jw jX ky kY ly -lR +dk aa aa aa @@ -42695,27 +42724,27 @@ aa aa aa aa -dN +dk ef ex eP -fh +fg fz -fR +fO gh gx gN hd -ht +hf hU iv -iW -jx +dk +dk jY -kz -kZ -lz -lS +dk +dk +dk +dk aa aa aa @@ -42952,28 +42981,28 @@ aa aa aa aa -dO +dk eg ey eQ fi fA -fS +fP gi gy gO he -hu +hf hV iw iX jy jZ -kA +iX la lA -aa -aa +ab +ab aa aa aa @@ -43209,13 +43238,13 @@ aa aa aa aa -dP +dk +eh eh -ez eR fj fB -fT +fQ gj gz gP @@ -43223,15 +43252,15 @@ hf hv hW ix -iY +iX jz ka -kB -lb +iX +la lB -aa -aa -aa +ab +ab +ab aa aa aa @@ -43466,30 +43495,30 @@ aa aa aa aa -dQ -ei -eA -eS -fk -fC -fU -gk -gA -gQ -hg -hw +dk +dk +dk +dk +dk +dk +fO +ge +gu +gu +gK +fO hX iy -iZ -jA +iX +iX kb -kC -lc -lC -aa -aa -aa -aa +iX +rv +iX +ab +ab +ab +ab aa aa aa @@ -43728,12 +43757,12 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab hx hY iz @@ -43742,10 +43771,10 @@ jB kc kD ld -lD -aa -aa -aa +lA +ab +ab +ab aa aa aa @@ -43986,23 +44015,23 @@ aa aa aa aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab hy hZ iA jb jC kd -kE +iA le -lE -aa -aa -aa +lB +ab +ab +ab aa aa aa @@ -44242,25 +44271,25 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab hz ia iB jc -jD -ke -kF -lf -lF +hz +hz +hz +hz +hz lT -mf -aa -aa +hz +ab +ab aa aa aa @@ -44502,9 +44531,9 @@ aa aa aa aa -aa -aa -aa +ab +ab +ab hA ib iC @@ -44515,9 +44544,9 @@ kG lg lG lU -mg -aa -aa +hA +ab +ab aa aa aa @@ -44760,8 +44789,8 @@ aa aa aa aa -aa -aa +ab +ab hB ic iD @@ -44770,11 +44799,11 @@ jF kg kH lh -lH +kH lV mh -aa -aa +ab +ab aa aa aa @@ -45016,12 +45045,12 @@ aa aa aa aa -aa -aa -aa -hC +ab +ab +ab +hz id -iE +iC jf jG kh @@ -45029,9 +45058,9 @@ kI li lI lW -mi -aa -aa +hB +ab +ab aa aa aa @@ -45274,21 +45303,21 @@ aa aa aa aa -aa -aa -hD +ab +ab +hz ie -iF +iC jg jH ki kJ lj lJ -lX -mj -aa -aa +hz +hz +ab +ab aa aa aa @@ -45531,21 +45560,21 @@ aa aa aa aa -aa -aa -hE +ab +ab +hz if -iG -jh +iC +jg jI -kj +hz kK -lk -lK -lY -aa -aa -aa +lj +lj +hA +ab +ab +ab aa aa aa @@ -45787,23 +45816,23 @@ aa aa aa aa -aa -aa -aa -hF +ab +ab +ab +hA ig iH ji jJ -kk +hz kL ll lL -lZ -aa -aa -aa -aa +hB +ab +ab +ab +ab aa aa aa @@ -46045,22 +46074,22 @@ aa aa aa aa -aa -aa -hG +ab +ab +hB ih iI jj jK -kl -kM -lm -lM -ma -aa -aa -aa -aa +hz +ia +iJ +iB +hz +ab +ab +ab +ab aa aa aa @@ -46302,21 +46331,21 @@ aa aa aa aa -aa -aa -hH -ii +ab +ab +hz +ia iJ -jk -jL -km -aa -aa -aa -aa -aa -aa -aa +iJ +iB +hz +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -46559,20 +46588,20 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -46816,15 +46845,15 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -47073,14 +47102,14 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -47331,14 +47360,14 @@ aa aa aa aa +ab +ab +ab +ab aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab aa aa aa @@ -54049,11 +54078,11 @@ aa aa aa aa -ow -oJ -oW -pi -pv +mo +mo +mo +mo +mo aa aa aa @@ -54305,24 +54334,24 @@ aa aa aa aa -oi -ox -oK -oX +mo +mo +mo +mo pj pw -pI +pw +pV +pV +pV +pV +pV +pV +pV +pV +pV +pV pV -qd -qg -qj -qn -qr -qA -qG -qM -qS -ra rc bD rf @@ -54548,27 +54577,27 @@ aa aa aa aa -mw -mD -mK -mR +mo +mo +mo +mo aa aa -ni -np -nw -nD -nK +mo +mo +mo +mo +mo aa aa -ob -oj -oy +mo +mo +mo oL oY pk -px -pJ +mo +mo aa aa aa @@ -54804,29 +54833,29 @@ aa aa aa aa -mr -mx -mE -mL -mS -mY -nd -nj -nq -nx -nE -nL -nR -nW -oc -ok -oz +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +oM oM -oZ pl -py -pK -pW +mo +mo +mo aa aa aa @@ -55061,29 +55090,29 @@ aa aa aa mo -ms -my +mo +mo mF mM -mT -mZ -ne -nk -nr -ny +mo +mo +mo +mo +nl +na nF -nM -nS -nX -od -ol +mo +mo +mo +mo +mo oA -oN -pa -pm +mG +mG +mG pz -pL -pX +mo +mo aa aa aa @@ -55317,30 +55346,30 @@ aa aa aa aa -mp -mt +mo +mo mz mG -mN +mG mU na nf nl -ns +nl nz -nG -nN -nT -nY +nl +nl +nf +na oe om -oB +mG oO -pb +mG pn pA -pM -pY +mo +mo aa aa aa @@ -55574,30 +55603,30 @@ aa aa aa aa -mq -mu -mA -mH +mo +mo +mo +mG mO -mV -nb -ng -nm -nt +mo +mo +mo +mo +nl nA -nH -nO -nU -nZ -of -on +nF +mo +mo +mo +mo +mo oC -oP -pc -po -pB -pN -pZ +mG +mG +mG +pz +mo +mo aa aa aa @@ -55832,29 +55861,29 @@ aa aa aa aa -mv -mB -mI -mP -mW -nc -nh -nn -nu -nB -nI -nP -nV -oa -og -oo -oD +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +mo +oQ oQ -pd pp -pC -pO -qa +mo +mo +mo aa aa aa @@ -56090,27 +56119,27 @@ aa aa aa aa -mC -mJ -mQ -mX +mo +mo +mo +mo aa aa -no -nv -nC -nJ -nQ +mo +mo +mo +mo +mo aa aa -oh -op -oE +mo +mo +mo oR pe -pq -pD -pP +oR +mo +mo aa aa aa @@ -56361,13 +56390,13 @@ aa aa aa aa -oq -oF -oS -pf -pr -pE -pQ +mo +mo +mo +mo +mo +mo +mo aa aa aa @@ -56619,11 +56648,11 @@ aa aa aa aa -oG -oT -pg -ps -pF +mo +mo +mo +mo +mo aa aa aa @@ -58180,7 +58209,7 @@ bc aa aa bc -rm +qs bc aa aa @@ -58437,7 +58466,7 @@ bc bc aa bc -rn +qs bc aa aa @@ -58694,7 +58723,7 @@ bc bc bc bc -ro +qs bc aa aa @@ -58944,14 +58973,14 @@ bc bc bc qs -qC -qI +qs +qs qO bc bc bc bc -rp +qs bc aa aa @@ -59199,15 +59228,15 @@ bc bc qh qk -qo -qt +qk +qs qD -qJ -qP +qs +qk qT -rb +qD rd -re +qs rq bc aa @@ -59457,9 +59486,9 @@ bc bc bc bc -qu -qE -qK +qs +qs +qs qQ bc bc From 6cb9155af3231d62f976740c425c9ba893f2b40a Mon Sep 17 00:00:00 2001 From: BurgerLUA Date: Sun, 11 Mar 2018 04:05:05 -0700 Subject: [PATCH 10/18] Fixes non-unathi from taking toxin damage when eating food. (#4389) --- .../Chemistry-Reagents-Food-Drinks.dm | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index 28be799bcd5..de6f748659a 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -93,17 +93,10 @@ affect_ingest(M, alien, removed) /datum/reagent/nutriment/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - - switch(alien) - if(IS_VAURCA) - M.adjustToxLoss(1.5 * removed) - return - if(IS_UNATHI) - return - else - digest(M,removed) - - ..() + if(alien == IS_VAURCA) + M.adjustToxLoss(1.5 * removed) + else if(alien != IS_UNATHI) + digest(M,removed) /datum/reagent/nutriment/proc/digest(var/mob/living/carbon/M, var/removed) M.heal_organ_damage(regen_factor * removed, 0) From 84a4da5af4169bf8f09b43f3773cb3c9089e53c5 Mon Sep 17 00:00:00 2001 From: Werner Date: Sun, 11 Mar 2018 14:51:51 +0100 Subject: [PATCH 11/18] Reworked the malf announcements a bit to not point directly to the AI (#4388) Also uses proper RFC5424 syslog levels now. --- .../newmalf_ability_trees/HARDWARE.dm | 33 ++++++++++++------- .../newmalf_ability_trees/tree_networking.dm | 10 +++--- 2 files changed, 27 insertions(+), 16 deletions(-) diff --git a/code/game/gamemodes/malfunction/newmalf_ability_trees/HARDWARE.dm b/code/game/gamemodes/malfunction/newmalf_ability_trees/HARDWARE.dm index 2543e5c8cd1..b0cb722f6dc 100644 --- a/code/game/gamemodes/malfunction/newmalf_ability_trees/HARDWARE.dm +++ b/code/game/gamemodes/malfunction/newmalf_ability_trees/HARDWARE.dm @@ -114,35 +114,46 @@ set_security_level("delta") if(timer > stage1) - radio.autosay("Warning: Brute force attempt on primary firewall detected.", "Self-Destruct Control") + radio.autosay("Critical: Brute force attempt on primary firewall detected.", "Station Authentication Control") + radio.autosay("Notice: Local override recommended.", "Station Authentication Control") else if(timer > stage2) - radio.autosay("Warning: Brute force attempt on backup firewall detected.") + radio.autosay("Alert: Brute force attempt on backup firewall detected.", "Station Authentication Control") + radio.autosay("Notice: Local override with authentication disk recommended.", "Station Authentication Control") else - radio.autosay("Self destruct sequence has been activated. Self-destructing in [timer] seconds.", "Self-Destruct Control") + radio.autosay("Emergency: Self-destruct sequence has been activated. Self-destructing in [timer] seconds.", "Station Authentication Control") + radio.autosay("Notice: Deactivate using authentication disk in SAT-Chamber", "Station Authentication Control") while(timer) sleep(10) var/obj/machinery/nuclearbomb/station/N = nuke.resolve() if(!user || !user.bombing_station || user.stat == DEAD || !N) - radio.autosay("Self destruct sequence has been cancelled.", "Self-Destruct Control") + if(timer < stage2) + radio.autosay("Self-destruct sequence has been cancelled.", "Station Authentication Control") + else + radio.autosay("Brute force attempt has ceased.", "Station Authentication Control") return if(N.auth) - radio.autosay("Local Override Engaged - Self-Destruct canceled.", "Self-Destruct Control") + if(timer < stage2) + radio.autosay("Local Override Engaged - Self-Destruct cancelled.", "Station Authentication Control") + else + radio.autosay("Local Override Engaged - Network connection disabled.", "Station Authentication Control") user.bombing_station = 0 return if(timer == stage1+1) - radio.autosay("Critical: Primary firewall bypassed.") - radio.autosay("Warning: Brute force attempt on backup firewall detected.") + radio.autosay("Alert: Primary firewall bypassed.") + radio.autosay("Alert: Brute force attempt on backup firewall detected.") + radio.autosay("Notice: Local Override with authentication disk recommended.", "Station Authentication Control") user.bombing_time = stage1 //Further attempts will only take 900 seconds if(timer == stage2+1) - radio.autosay("Critical: Backup firewall failed.") - radio.autosay("Self destruct sequence has been activated. Self-destructing in [timer] seconds.", "Self-Destruct Control") + radio.autosay("Emergency: Backup firewall failed.") + radio.autosay("Self-destruct sequence has been activated. Self-destructing in [timer] seconds.", "Station Authentication Control") + radio.autosay("Notice: Deactivate using authentication disk in SAT-Chamber", "Station Authentication Control") user.bombing_time = stage2 //Further attempts will only take 600 seconds if(timer in list(2, 3, 4, 5, 10, 30, 60, 90, 120, 240, 300)) // Announcement times. "1" is not intentionally included! - radio.autosay("Self destruct in [timer] seconds.", "Self-Destruct Control") + radio.autosay("Self-destruct in [timer] seconds.", "Station Authentication Control") if(timer == 1) - radio.autosay("Self destructing now. Have a nice day.", "Self-Destruct Control") + radio.autosay("Self-destruct sequence initiated. Have a nice day", "Station Authentication Control") timer-- SSticker.station_explosion_cinematic(0,null) diff --git a/code/game/gamemodes/malfunction/newmalf_ability_trees/tree_networking.dm b/code/game/gamemodes/malfunction/newmalf_ability_trees/tree_networking.dm index 7abf946e34d..cbcac0ad44b 100644 --- a/code/game/gamemodes/malfunction/newmalf_ability_trees/tree_networking.dm +++ b/code/game/gamemodes/malfunction/newmalf_ability_trees/tree_networking.dm @@ -230,21 +230,21 @@ sleep(duration/5) if(!user || user.stat == DEAD) return - command_announcement.Announce("Caution, [current_map.station_name]. We have detected abnormal behaviour in your network. It seems someone is trying to hack your electronic systems. We will update you when we have more information.", "Network Monitoring") + command_announcement.Announce("Info: Abnormal network activity detected. Ongoing hacking attempts detcted. Automatic countermeasures activated. Trace activated.", "Network Monitoring") sleep(duration/5) if(!user || user.stat == DEAD) return - command_announcement.Announce("We started tracing the intruder. Whoever is doing this, they seem to be on the station itself. We suggest checking all network control terminals. We will keep you updated on the situation.", "Network Monitoring") + command_announcement.Announce("Notice: Trace Update. Abnormal network activity originating from: Network terminal aboard [current_map.station_name]. External network connections disabled. Trace cancelled.", "Network Monitoring") sleep(duration/5) if(!user || user.stat == DEAD) return - command_announcement.Announce("This is highly abnormal and somewhat concerning. The intruder is too fast, he is evading our traces. No man could be this fast...", "Network Monitoring") + command_announcement.Announce("Warning: Automatic countermeasures ineffective. Breach of primary network firewall imminent.", "Network Monitoring") sleep(duration/5) if(!user || user.stat == DEAD) return - command_announcement.Announce("We have traced the intrude#, it seem& t( e yo3r AI s7stem, it &# *#ck@ng th$ sel$ destru$t mechani&m, stop i# bef*@!)$#&&@@ ", "Network Monitoring") + command_announcement.Announce("Error: Network firewall breached. Network integrity compromised.", "Network Monitoring") else - command_announcement.Announce("We have detected a strong brute-force attack on your firewall which seems to be originating from your AI system. It already controls almost the whole network, and the only thing that's preventing it from accessing the self-destruct is this firewall. You don't have much time before it succeeds.", "Network Monitoring") + command_announcement.Announce("Error: Ongoing hacking attempt. Automatic countermeasures ineffective. Network firewall breached. Network integrity compromised. External network connections disabled.", "Network Monitoring") user << "## BEGINNING SYSTEM OVERRIDE." user << "## ESTIMATED DURATION: [round((duration+300)/600)] MINUTES" user.hacking = 1 From 5c230d4e2a8acb3b1c4e487f40f715200ad875bb Mon Sep 17 00:00:00 2001 From: Erki Date: Mon, 12 Mar 2018 10:00:14 +0200 Subject: [PATCH 12/18] Fixes #4379 (#4390) --- code/modules/clothing/clothing.dm | 7 ++++--- code/modules/clothing/shoes/magboots.dm | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 4d41132ad31..7e5c5094806 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -448,9 +448,10 @@ BLIND // can't see anything ..() update_wearer() -/obj/item/clothing/gloves/on_slotmove() - ..() - update_wearer() +/obj/item/clothing/gloves/mob_can_unequip() + . = ..() + if (.) + update_wearer() /////////////////////////////////////////////////////////////////////// //Head diff --git a/code/modules/clothing/shoes/magboots.dm b/code/modules/clothing/shoes/magboots.dm index 15132d8978d..8cb2405abbf 100644 --- a/code/modules/clothing/shoes/magboots.dm +++ b/code/modules/clothing/shoes/magboots.dm @@ -80,9 +80,10 @@ ..() update_wearer() -/obj/item/clothing/shoes/magboots/on_slotmove() - ..() - update_wearer() +/obj/item/clothing/shoes/magboots/mob_can_unequip() + . = ..() + if (.) + update_wearer() /obj/item/clothing/shoes/magboots/examine(mob/user) ..(user) From 8607bd3e1fdf6777798d29cdbbe4a9b8ee9c660b Mon Sep 17 00:00:00 2001 From: Erki Date: Mon, 12 Mar 2018 10:00:28 +0200 Subject: [PATCH 13/18] Fixes ticket security issue (#4398) Turns out, ticket panels are updated for everyone if anyone presses specific buttons. At which point, the usr may as well be an admin, and this will then give access to all the tickets for everyone. So i fix it. --- code/modules/admin/ticket.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/ticket.dm b/code/modules/admin/ticket.dm index 3358ab958b2..f7695ca92f0 100644 --- a/code/modules/admin/ticket.dm +++ b/code/modules/admin/ticket.dm @@ -106,7 +106,7 @@ proc/get_open_ticket_by_ckey(var/owner) var/list/dat = list() - var/valid_holder = check_rights(R_MOD|R_ADMIN, FALSE) + var/valid_holder = check_rights(R_MOD|R_ADMIN, FALSE, ticket_panel_window.user) var/list/ticket_dat = list() for(var/id = tickets.len, id >= 1, id--) From 216305fbca800857b4feb5663b69b92d7b1f1f36 Mon Sep 17 00:00:00 2001 From: Synnono Date: Mon, 12 Mar 2018 18:08:29 -0400 Subject: [PATCH 14/18] Snowflake Custom Item Tweaks (#4404) Modified at least sixteen whole pixels. Very important. Very. --- icons/obj/custom_items/jennifer_clothes.dmi | Bin 8643 -> 8608 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/custom_items/jennifer_clothes.dmi b/icons/obj/custom_items/jennifer_clothes.dmi index c3d0e0c7f1c5434169c74d145401a96594718f6f..41912aa0aebc10e813d646dad7186a63c7dca064 100644 GIT binary patch delta 8212 zcmY*;Wk8hA7w)^{(%lWx2rJUDAPrIiDjiY^EG;Y&OSgi6bV^G%h~&zT4pCXUQ(BrO z?)ty?%l)vsGduI1Gjq6>-$(_HB-v*avTQmKW*{LlD8bcoit^UxL}bjsnSl z)E=E|jpGA*iyce}&pUqa>RJj|gqyi_&;Un^{)aZ-qbX|V_AjIE=tb~1NRh~qlwC(G zz;s`Cop@N$%b6+CzQorAKltzhF@z>CF{+QP%Nn=+`-{oCZWiKT1pVSX-Y_iGL8=gN z!7WO11>fyQES<0te-E-^(C0(rcnW`Q$l;?n+EH%7YMqk#*mgE$R_A}=%10fW?z4XO z?n!5IMh1U00KK&qtp4gj%5?N&maw@4a(JVq}6y9>67aF@<-Ma)~Fp-}4)6jki z0Hp~*OsKZQGfv|Iee09WQ3`u`aW_`@a)>ePoM^IhYuBr;zRZp$*+L)3S6%j(mNY$& zxs9E}YpztSPlQgz%m*KQ?C7X%C|*1Yz~Ml3LY3c7>7unheHk{$EBMbZci$I(uu<_6 zo`C3h#Tctbx2Do=2==1jGkU|vXc7OSJ-JCIfRi&i3hEXnlcTF0R7?CcRj4P4`{~i? zPd)V%=^WiM8NE>b?_aj{`KVD_wyISr*nqh!8K78@$RW;+>!XfuU}%u9Kfu|XJbn^^ zQGYY<5^&u!WvS5OyCt!{<)EBbu=yLBh6rVr$GESIS~MGa{ZQklHzeKjR{LMuh>!s@ zK)t@bwy2(mrJ<+SPnPvzc_Yor;l9-#SoUdOyMXFKMZ0(g=~I91I*LYa94(#>3iE}| zIQ1X9U9dYEi<@?pWw5rsL!*}A;VE;F2s31M1KktVH`qtk4&{N-O{KxuPf zn^O|R<3r&u3cnv!YKyfr_iUW!fBA!R9_6EDKIPCTmc220r}w%><&A_35dxnC)s_lP0ubMcX)?f$WxX?L$6qh5DMv5*wU9cNw;k|6f$8;tZSNe8{ znihg;y38$QLOKTe5>|-&Rf`jQ_Rku28IYcU7wYhMuv5?Xtr?=)U|?cucBH1x^|doB zQi~&Oe0TR}sqwZUkT?u~1#Pp=r(@LcV?$UULHv>dG{{y|on6>rg1QLhl@2yyEy8(}pLD-;_bKujf0C z|E^FE1c}FimLupM(>g(Zo{%~S{aO~@VTEWUj_Po3sLgUV= z_!SG{hn&0XVmiVF%zbLC&kG+XDvAc$2+CkrD03X zVcMn2QTvVg=V#Km0}QDkK);k9W6}4uvF*D#fl6uEK=)Km_SK;jo;L=vxN@Yz+gBk3-~yaQ2TS!34OtEnOIC zMP&yL4gqGk*g*ZarAS1((&f@vF-IWjq_?dJV(vSe-q3p~*>{KC?MlFk(1aEK)gLU6 z@<%0agt?v$hbra7HJ{*5d)jZl27&>qN9PX%lCJ}oq`nk|fk4SIU53yBc@RiMM3d`m>1 zOiWDh?}K2RrHf7y(-u#Iz+f;8NKWi{KL;j3QZNa#a@4M>ni^i`;~RREzmO4-Qj}jL zlXr~1E&29MPE1UU9+dK~!;+7hP>Pw9nwmPDk%{TqWa{{h)TUh5A&$DCkM``w+d(cW z<)od`uc?USe7a(OWhTm-_wU~WK-zGhg`|W8LgKU60`+*%+5w5FkM_`w8L9hE3qy}R zL?<>N)*j3#3xN`~y1Jq~1+az``O3!}e>sWo`Ly#>6EbMF842vy=cc9MH_W)iixZvh za!#`VcX#)l%2h07O;MRkHeS3Ptdn6Y6Bx9@qSAl;vucD8#xkky9XK{A+Ohe zol`Y%gTsX_3A1Y_c*yOSQ;fDAd$u8%U0aw!6amo;VtadgNQSnCj*cojx#GKbG67Jw z)i&@4P2j;%={hznhwEdLUpF4KCEEo%n3$Ueh*01`B{(#iR+XO!lLsFOsTJshd#opl ze!PxXh?hbh!X|b~i--x1wwDuxdFOy-Z$XHUv0Sx2Uq_)n-^BFvz~bKrzKDDCC%xvvkJSh~d$>KJlWXR{?5cg%T`kr3q;umHWOR9Lj>wPkq_+qi?rL1!qf~^6#e|9C0ysDGcy?rwThLL zm9dKq_)Ses$q6I$4Gob&cBJ?5fnDB4U@Zg4!Mb~7^m2w{Zci+Y;L&E5+v?X!2kQcN#9z$N;4S;Kl8qCs73Md&cpu6=~!6b&J+ohU=l*UA{eV9`@{ z&g~d@7+XG8el+tnG?|@)0iiSbjp`;*e4guhDbC-?kghx|s0gX1>z9wBEf#oUG9WWY z^>3)Nn+s@1#UmGlk>ksg4sp76|9Nv};fkiHw8Kq;Ids!rddiBAn9JL!v^+ZA64btq z_=@e5O+mcg+s+T#+MSkNnjb+LM=gH6PtIZT*85<$2A^=0^FE#bXGGHYNuR}g10JrM zRSHtci2GLeVbK)2KF$XZwnN<6NewNCwK>|#)rQFZ7p{_A9;o6;d9zNGM%?p;j7OX* z{w|Hsi)_LU&Q(BH9Sm4j|8VcqxFKhBR)6Wgz{13_=W~ImSIWaNRM9aI3*n0Z)i1f>VwZw+h7laB8v`Vj)#GF9hlHDP}WRe`yQn#{?MWP<`0; z5^W0-Gc?E<#{dI(mTtqbii*C&k}L`ds(Rt<*=El3??;MxV)v|d461q52~mV+4<-G% z37?LQcsiPA$GKTejxwk3pLUV(i6nJ>IFeJKT>6uNj8p+J=&utn8sQPI%@a1h753XH z!l0Zu5yqOp`@9CFES!csyif+C!;}65s0omumAkn*bT3WH16~8kL3=Fh^>6IN9iL9MWqBVHc`|38x2TZ7!q@+-Ldx!g5 z`^n`R0f_Q{s>+Reotikgxp4(P#rmRgC~pKl5n`Go-!OU|j#v9MR30+J1ZUYY304co ziOE@R<{6}O;j09dW-T9Xg)$1l#~-C z=Nk!7fN{vdIK~RCCR*TuyPuPjoSUEj!sVpAw-c>>2%<*0idOze%IIN2;W*?nlwj9lZ7I{-N`$@26XeB1v?4t)%U?a?$W)H;_d4WvZ9*1#$Cz~s?&NY3L#ZS40)Za5k{Qc`$X@`#8CcHhX)T_~%}tgL5dX3nQq0WNb2 z3JPp*-n_y148fDE!ud#CTs#9)6l-5yUF}^2K=bOFn|->^3pqfWCs*+yior1Sh2yKp zkk9&j827H6y~B8T`Q!@cO^}be6~q4^a;CvCnUm-=6ZD5?hD+Eow1@rA?ye3lF0KU+ zFNVWKX%&n5Ty)$~cCbYuL&kPQ+qDxDGcpLG5Xc|<7njS+N6AUO2z${V=zG68nkC;c zQ>=y=q04M3!idka){w@erMu_<{ouDVTj>(bn4L9!5~M(v1j4w87)Tu60E8U?*Q??n z7IIV=q~bT>CoTJU(z`K_2X9fE7vRiSY65`@E=X;2m z(Ak$2zkmPe>66Ec`OKU3HhGV-$<$)BrDOGrP~=VdZ>NCMAL_AUKLG zNa~fvb~D`Go}2JPQG+Db3ya$a*Z>U;4G=836kw>2HfQ?Ia|{A7qlm|!K7IN&vx;{g zNy2pWr=q4_Jjm3P(X7)3iPv0CMHm4=+y%&8%zLFvy0N--f>q56m8f6ZKf;9mzclEv zrsgBh&8<3d&MVC^KbO0%6jwPYO#`lqd z;LT$=XE=M~ZKP;vV`EA1F(Jr zh3NkNen2L@(JCb%34|P36l^O}Cw=5n%daaZ=&>d*&_{qVP=>*sKvIb3cW_T2`zn`v z!?Vv6vk6bzHaFv1o#J|Xm7*}93ZV}-7goo7_pjNoMbXjH%7lAT0}l-Niww%kYilR$ zAoTjr=h+|86Jw%JOtaV^Sw-LmEpJ(qMgzKH17>HxW{8=vM?Xx8(KzB=eKN1lwHW=w z6B|)`zT`p~))Tz9=VHiC4mrC$3&AkB={dx_FvEJYHK)@mX1@|Y=me^7nz~<&A7Fc1A9W(&ZM!jr;M^1A#3w304eh?Fm#Ecfp#iiP??L#rqx#j&sw=QUE@K1VRT85PI&QpNFmLA-7$GE>|c zlXq+yBGA%FOSh|WBIgxY@g@M~QEfv*!!)4LSjYv^*xXFW7(8D(j;Ko^!j;@5r@Z1M zMA2R?OyZc|6Y~^{T;t$xcO4hua*-&m*J1O=z&FjzM_9A3=_FiQ3cmBb{@}Zl@H*f>5s6{=lixPUvimkjR>O9HZH|KHMJSR!ZdPbW}+5=VR3+=wXZw@?$*IWG2{I6%Pj|QdT-rodUu`k5J=@u_Yo)*l#YXxLj^L;puvYW0yMkx5S^m# z_hB^rSrV?@IbMfzYgvXNAdeFh&vz{HA1n{nyeK(X zXdsH*lal~f`ez;u;|n~yoAw+rp=XVqNX&`q@b@`pxjFmMEcWFvg6uYM6|4~`3SAxO~_@9;~P8;QRv;A z&pPoq(e=%p{+IwRz$E7?X$q^VU(o;sk&j78VuOO2_S4~6MJqvj$nSFxNL~uk5;-yl z3pq`atP+{1xh3HK+mdh9Ai|<~264XJe>eHdsVG+=cvX?+59vPPozPl#>Dr!e=!Xv* zE)58pL}KsVm1A5TsW89M!vX@wqqt4Ua4{0VU3w27|A;$q?-2KCftBpvUdzi30xm}f zmr3jk>rkhLi8e}7&*!2uQ1Lze_(7ps95*{Rmu_<(a|@h-;9pDF(D1N<83(}$Md8?!S&`Ux5rUJ89p}K2eX9Mb6|% zA*D<=h1=)Iw@1Y&OtS_=ouK5}sl4a&^qf>X4(F%&FpXh=)DA%!QvC;CmQK}mf*rT_U} zOnOCJlKFR`U<}=I`2FQM5S*u*6FaRo^|H#eZ)!|w?HCSmo)W@TI;4mM==EzQRmiBp zklgilp>c~Vi^FIpckCd4q`)JBd`uD9c6&ZIlleiGi^F$H1yktExpm2NaOw+unr`#r zbr{Qz`Caj{u&qs+gEQTM-yXw=>)xF?jbuwx$@(4?F|fzP>@en+2J=u+pEkmRJI}zr zx#q&s($bd_6AfPS(tzr(iLL+lHi$8qjDP^~Qv`J5aqSsd)1!A~ zeUeiH$vOkqNd^5l3@jI?L26%$!n!VzkP z6!Z8)6C4L=t1TV3(BN8n*6TA$OoCz#+*Zz(M}aYL>icWVASN|~^ey(F6C*6jUfss+TDj5_HFuppaT1b7< zWNLJ`^*H_9n_pSgeW!Q0mhal6ZCcv7W7+H1-FcQH_rJ{UtiFc@j7U$MJyx;z?m>Cu{XvLLOgR8QOlwc%;ty}u9&RV2wxLf1gw0F^%J~&~NBsOB{mX}H zv>#{#Tr_~Pn>iPkwp)nL-5&Tr@cIJWbDR@WVxpBHE@GY?zEW-{QIR$E z0E)#;pwUzy)XutFFLW^c4Q5N^jkn_)B~fbK*e%OGtv!gmtmKIKY@y14AeP{`9=#zt zXf4iKe?osM?9gW8WLN(xZybEUX1`3#hh3TNzSP@a#|XHen{$bf_Vtbs)#T&8O+Wkb zpmIK7srOU=ef=kwwRVEj8J4JtkzX9@24LW|!=K=~g|w%MQ3^rd9(m&1`n`?nee59* z=2~FOy|qD9*=>ZQX(R12+}?;WN^DaelgG-%uW_Eu(N)RarB#{VU)J`aAcCiymy_HF z&p1-wR9B`A8?Kz-c3WUY``azv)oXj%%L7xwzSbxby@~fSA7%YT`kJEKGy`-i~ z-)F)7$wNbP84wbVt8n~8Sg-H-nmYBrzfqRY5ax{AmoE#@wlz=f+xTv-DRJ$qV`Ty2CsJ3-nhDte&@Elqr0e z5*yek*Dun-FWxy0-93u7&lKEE$b+#`gA5|^ykDze?y+iA3{*&RIQccFgAPgYfDef0 zzY5Mb16yH>HMPs5eo6Zm2iA9;wnS?CIUzAjNU{yuZ_)`DTcqEiE5@oUFZ4`!t`;st zAm4?bfYA$Ao|T_TsU&H8UFtwU>dkFW>%IZ#0ch@Up=X^`GQ8a)z)sP1Oo;gkMc{*u zeU4E4SxCFSX;)A_6Z%ijC9zVq<88_2Scb7A7Mv=*wT`?ENdmB^-yZN~iFKYBhr^m% z+K>OjveMzIinxh5%oSzGtr3*P5S?~T)HvHUV_qQ|7E{lr^Pz~GsN~3@lSuw{vo1-L zUAH|fh@ui5X&I@HN5&ZVf8T!p!#mRC41svQ6T delta 8278 zcmZ8m1y~hPlpc6=m(uV=LK*=9X+e+@kOnC!X%Ho(=8;m;Nb_h=y1PV5TDn1`Tbf7g zxVzu(e*1mz-8nPo&N=tqbMAlsnaPyxl#RXy$t@Sp+Z0nZZXSa5%e(_4ex(E|%v4&y4z{+-Pem06g{W2+~97UVCD z&rL|^@GIA0c71vP^}>@l?j*iiz@~E^xwHKw-7EI;hW{9~*yd%m-{2JbUWtSvOfQBA zs~Se}Q(7ht{(uII6CWY^@m(S~h~QF6t|&m%0mmSfW@K{LLh3klkFXCR@S*1j-n!(4qnlO1S`@YjmJUVuD;p74oNh6;JwKYizs6l z8b}tv2Fl+KGl*;7sz!-@%=19oZ$4H9+OZkE5zWowfEgWz@RLJ@)nI_2 zU}N+XWh@;<$FZdhr|wkWJq{rsz1t}jhWiP zyj1n{Y=omy2o%;s?qTi1mfUwnssWvQE?lNT!8xzIGR^*x&1~gPiHZ z21LAeQAtBSQIs8cLFlh*?QuDGN#iaH*d&h_T^nM=v(Jz>z8S@kyZ}q(4jG&@RZ6eEB(CeC_}**2Zt- zhyipRw4jK1^gKY4{8+m`*+Hs|;>Z4VQKG=dkE_!Nw%Sm&=NJ_uI}YlJ{Xw`<38qKC zyY!kp9%q2Jm*xD4{g~Q4iX>sy_vi_*%&)wwA;$osrj!B5RPT*Wix2Ex7h+~(d6pF& zg*QK#J!^Px1{-?{Q4&s zQt(6JH68fX(;Q`t8J&_6h7@A#Dk^LJdHb#(Xy0?|+4qU?HuI8=6=E*x8O|l_``xk? zXTyaU91S5~I_T>47q`|@VrElZv3GgKLC75!mpf7zPo*FI3DO1)f}>R5g2Hu9cX((j zh!KRo8Ys6qX5?z8Z*lIoYR@zsVfE4++mB^*Z-qI#Ro_a$b`-R2?-A`Dwr(ce( z-;J+GJ16EgUsI&LCog=%f6*b1n4z|IIL_YwBh_?mY|_x^!Q~Yb9+ySX1Ipz^ckG>3?bygx0^BU8|jrpt4qA=RsG{2CST{=kDIaS^-261KEJD1=e5eSuv-L$FNhY zw*Ecz*@Lj&S&_wBlyVgMp=V3|>dw)$`_AKeH*kxvnlsgTE>Cy_!7+cb#Rr%MEbW}0 z%_T1u>dc3Y7u&sBZMi)yMD%ZT_GcMCW?-p`P}(P^_+8oLw^Z@tsB z;;t(s`m@-O;*2?O^U-1#PSBC60c;0uFKRnJ}-1uxEPN{$P^p=UfFM&46z5bDVf(iTpy#LZ+vyLrWa0+}1W zl=z^v^Gbb4I($q`Tw{2&>>^>r(%&+_jb9Js?$T$1A+ z^8Q7sIy1BM2 zQ7JEd^1X|TY1NF%sFk0j5k?cNed+FixX>2k8;$Iaw6%2v@6sKbD|gm%f%=7X!B|#B z#VA)?pNdi*8GkYX)T)6}H`R(?wa@_zero@Y%utIE>#aCItFPVY&WkL#0MFGI+iu{WE z!(ny98sR4I&x{*jpz0vSqv9+6DbY`Jg!e&Lj%2P zCgRT@3k-C$-2D9S8^;g6gfACjNTY*hJR{?e$@Jr}?U_Xz87v?g9IPygk zDPsHRXgGsr6a-kKi;Iqv)`I!Sze7h}v>$#_v&*83^ItstcaO*%5J5v0&Pky({D=Z? zd~&j~PP`8^f>%bkNs94E;F&_b<8sh=1cMT%Y6DZGW7eb}9X8w*1tA3knb75t3_q)D zYqQJCNsKT-RaGJmPR_@(Pvf6TT#-o)qZzcc&p2ZF?3boFe=tU zOq?p@AY*BnrBUx)Yhx9#HSNp*7xrw__JRdR@ z(kHm17}@H9{&)x`+d|+`cJO}-;QvVfC6N7AFKEp|Y>D-*Dwj?TpUP6O`!KIojAfwyQCC|Ngze ziKm34Egi3i2^CyW)$)~`qoKWAr|B_UOh_Z=55h!w0adUdEsOoJHsql$89H@_sK!`eC#wH&zBgwTt* zwXYsYXQ@k<=)eFC4UK`Cnwsc7i&w*uzbNI?e@5t=zU>(&o-L-(##+XDk{l!ZRqOlK z2Y)fyPpSpx8@9j6D~BP>5L%XCAdXjJLH7fo-ww90GA`N-sHCJcZK%Z%h5ZR6X1qVZ zvvRo7xtmLZL3ZuUc)stk?1x?crW31o&E<@jilB0>!!-JacK75F;J8;bwxvSQS&ofN zbKWPQha{%u9CjDYRS&j4Nukt13hLe5NwygPFyu)L73_k7f3O?n!y{}+Ge|{%B{V`q zL!(0U38wKi{&Zt^rph}R+_`TCja-H!;rohnW>!|m^FSLuDhxYxGPnKtP`U8?D{F}+ z^3R^3y*Ad?4*GZgS$NSjs?W4wYA$nrUFFS3EH6__ernY;5z<-39s+vEdP0|5A0gEs z1Z63%qDF0L#~$Kae|}`pYx1&x>$Pk)=7m<1&!TtD9eu$O6rN)iu`P~|5KXu=e# zk|gZJ@P*eT(%&CFP1IFMUFssUhd^Cd7aKYJ_FGXA46v>-__MJA!AmvhY3X(niq80TM`K$94_7Dh7}t&kZlYj)k3&N%&`g? zmZ;qL=jP^KX=<7a(R@y4Wh?yp)lVr82eUo<=fLKwHkBlZyzQ%q1?6^w=B=EY{%!lDO`N zD`u%DiLQt9>zC*ZBt4c@N7>diGV#~f_rQ%mysh%|&Us#4L3;ni z{lcaH-S{weeR?QeY{rEttV2}={hv`$|1`qpt1C}UJ}SYdbVMC6=kxsq0C9P|(YbSK zc5`(KG3z8L(0AG`3$%80WT4hxcWZhH)g9KlIfrfACK5?!2l-WV5I*IjoXFGlD^D3J zphK#fjm|4Fwc;!+CswUm99^1f5M(1DYo6JY zF#_!#f(h)LoU4QPg)f91=R>AU!1R(MO%09dzn^J^D_^FY@`XHozixWEJ@GFWomz3^ zRB~h}zP#m|rxsOGR<5uaV|9~YXIC6KV|)5welFvWOn5Q=M^any6dH_?)mv^Bo@aAQ zhG=dubCCVr(Xalxf2;b$>-B3|uX!l%sDeYk`5YX1V7an&C3ywJHW34dQ*E~iC9Y$? zenA}V*O)HqC7c8ypYw*%|D$*Y-vbQQD(3%yGN-QM2bp@;bH>f!bE zwN(}!CJ?HH_f^YwXn0tdmH;cB(tsH&0PXVf(h9oxMIi`m>)AQ2WP;zpq%}cJ$~abh zj0!n^Qrue)@sOrpAy3Sz=YirY;esEgd~gAQF*+QKffld@^blt_J7cU<#%kcEib|P= z=KE)T9b#k2`1tsP8ehlLQd2oS=Gr(Jb2Yv;l$Vd}9$)_6?@W*>o&pA$fvT!1v_J;8 zXuyIh|G3CNT-H8jR+S?G>@L9vD9r@8xe19rb>bU~8J$FSt{mp)<-LpY@usH&@cIR) z_Mb|oz1Pt&w6Op^OnBC%>q@zIU(0=E%EdD z_j*lk-1XECXf`)Td=Mxzf{(az90{Iik5nTHNvr84&kPx0?NA`@v9q&V)ffz3Ip?(! z>FZ^5M2i`NkfE;I8`R7?(Tx00zv&biUALMC@cCk>{{Qwx$+5EbV{DM+|abRvB?U7VaMVC3>TaVn_iK{HDT4wfhk_YD%yG`h-OM&A_D$JTcoOxtxmJShF1x}&ptRCyO5 zJXJzO{)vQ%YLkFD-UqU^Jbc&6bl7X2rE@Q?-PA7MnA9gZu64FKN+$ zxuuW&-*vH~6__tBa?VG`|CpUSA#X6OhD?6oAw!&x^FLeLx~!~5Wiw`e7V;wt;XZHe zp8s&H#Y}(p`|Gff*-a%2WbbGp5FD%bM4~M*Oh>(t^3{kAA0b|MurgTKt9M_Q0A%zt zKWrc~6-F~_MkAqx?Cv;d4KPSx?hWFrxC>|3Y;-_B>yq>#ik23k*_LGkMazAz@GlDg z*a6b{7F4$zU!0s%zW&Hr4XTj%7x_9X2Q!3vId%Tq)y}OQ=}ELV{OVw?583tEjM{QV zygKJ6i>%h^f|r>X-x+agVOa<-_v@(ha*b8e%Q^&y zz3N>v2y!Y6)KM|i*5K>gXZV1HIfi88S+pGgH(V+jY?Oq3)V&lmG92AFfv+BH zwK7C$625rz%^TA(4^w!?#E+g5v*v&pgIoF$%%NY(nmTMn&v#Q-9_!il%1EdDv(KM) zKP|lbZB`|=O#H)FLRmoC|7dH;4Q^+x+BAGXY*nHGIDcPt%KfXWa>;SgR6>IMlKYb*u$ytdWd%VeRuOIhSqcpPW6 z_YoWqwpJ+F+;l@}Ln-dC0g`<9z@-~Erocav{-T?zMC8+qD`R`u`wPp3*D@(sK((MS zy0qSX_}$zt5$NW{H9`s0XeJbYV7@f|s& zc2^7gY9opdFyAp8KA?DB%3AOW){se!1Jt%1-?u}C7xm2)uu=^Iq0gJj9PL|&jF*Edg7p?p-4A6|qSO8V{uZtmbtc## z@(tOUnD_$eKi~~?I3gu+a-I*q_tbou)Bo8dMSi8df}{3&NHOPV)Q?=@RqvrjKWPW6 zjfbk!w|AGhePgA4xF0N~B(#HSh~BH5K{)l}M{#NoI`HSOMf11|vlWR=pO#hmClSVMRe_Oi5+QsY`@snfg6xT;31CA1)#C1;R7C-G zCt^$p9HQoCSlD;MZ<11^hbbfnypOslcRfF5vDkZ`iS5_Jb~x{tF6I<0Dw|OUZH!*$ z`&}z(Rj|KU-DZ07r~@G~LGpkHHq4_Mw1c>BFJ=2W{#r=q56 z1gerMNJ)C=L8vEAO_ExdRHc?uKuz+Jd9utT3i2Fo<`Tx4P>7)p;s3nPx!r>O%bxU@ zXfeBNjjulz+?VJnNgpLB?atQVkLADYOnG7l@n}lQ|Fq)j>Z(^|MVS9GHQ1=hZImFo z{kbdQh>>(0E?(o@q}ozrkeC`zVsSB-H}VyawOASsJl127TxEswiVk|}-Fy!{?>_`N zfUrX7RnD!5C3WZ2a)EdG+Tv6a1W!WN*ICR&kMT|WTgo1Db90Ya3+f4FMO?1NTN1Eu zEVbYGr2cy4!`8S;3 z;4R&GJTLFi$9=u;^Ep}k$Y9sw4wSVPq-n0Vy0_D>sU`*cEFZAsdyc*rFCQ9~#E0pigXr$)8ahL(gj8iLk0Q>x>vAVStdlj}*iHr~21rP?Z)~PR?t4 zrmP&UzRs=-e~jBcs!p6Bev;s0;)7qJ6OMR_Fp)aPhDwYD?I#d_#hhxUd!>Aao+>4k zxMT?7|GlWpr6;E%(LGD-;SmZw)4SFeK%AR~r_ zl08jvf%p>}hlf>m%f)RW=Gc0UJ!^j_*BDm2-ncGoqnO+B1esr&cHDEY;30B@ya zOt{Mf_D7G}{d+Rdfntx_WS;(N1MZ)nrJ{&^YiRXjy{(n2n^DrF z!M?c5-&ne0e|~(CoP5CZuYQ~B-Qslg1Y;m7+XmYwo1#pocq4zW_}}4>(=Ab3Lt8>0 z^=nO$D&ut{4jWoKwsU`-!^eAUN7~k}1u`czNSV=Ze92T;RhqIaiZk~>o;ryPY+`WU ze{KZ}bko7Atl}^K-E|7^U`w$h?>5aMs0FZI*MW$8yrnN@z!HjiDW$tDT`axFXDgR# z=7hj9wEV_&VZk^we!A7XYok*a)NqY@HkUh$ak@Tw1Ohf9EOQwq|Mpg6eK=fTH4eF>j6-^d*F-j`w>WE=q5efJid#D-`1D?pXniwZv zwIf3uzHrYl)zIWoyxykf#NILHVU&5o{RVOBFpDjOpoFpQ)7Uz#_YQ-h$F49Y>7NN` z^fWQh&gYDwcqLn)phV&(4pzsZAy)Gy3LAZ-_ET=)>#Y*6D_6792bSC&yAFLcA3JJp zX3fvny*<92_nT&;<1Oh<2~}okLmjaMPqW~>Y2!4BOw=)-&-b3*g+BHEZj-uSW%Q3B z_Q;AQ?`8$7*M+MQ^bVy&=G=*PIhwR?6PHWcynw=8?CQ4bVa*11z9n(ld%YuSWwwB^ z>|hERvLJo}AWYAivMsKYBF#xFXJ)s%i`*To%irEOYdSAcx z4lS+g>i1=aQgw@6Y From f7fa4bf26d5b220b1636f57e1e6fdb2d593aeef1 Mon Sep 17 00:00:00 2001 From: BurgerLUA Date: Mon, 12 Mar 2018 21:57:12 -0700 Subject: [PATCH 15/18] Chainsaw Fixes (#4399) Fixes chainsaws cutting through centcom locks. Fixes #4372 Fixes reversed left hand chainsaw sprite. Added Chainsaws to traitor uplink, they can be purchased for 10 crystals. They come pre-filled with fuel. Added Chainsaw destruction state. Added Chainsaw description. Modified OP chainsaw stats. Added Dionaea Arousal backdoor Fixed up shitty eyedamage code. Fixed soundless chainsaw attacks. --- code/__defines/mobs.dm | 2 - .../highly visible and dangerous weapons.dm | 5 + code/game/machinery/doors/airlock.dm | 2 +- code/game/objects/items/trash.dm | 5 + .../items/weapons/material/twohanded.dm | 116 ++++++++++-------- html/changelogs/burgerbb-chainsaw_fixes.yml | 7 ++ icons/mob/items/lefthand.dmi | Bin 143954 -> 143924 bytes icons/obj/trash.dmi | Bin 14486 -> 14718 bytes 8 files changed, 80 insertions(+), 57 deletions(-) create mode 100644 html/changelogs/burgerbb-chainsaw_fixes.yml diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm index 4b454feca2e..d49c51cb614 100644 --- a/code/__defines/mobs.dm +++ b/code/__defines/mobs.dm @@ -137,8 +137,6 @@ #define FLASH_PROTECTION_NONE 0 #define FLASH_PROTECTION_MODERATE 1 #define FLASH_PROTECTION_MAJOR 2 -#define ANIMAL_SPAWN_DELAY round(config.respawn_delay / 6) -#define DRONE_SPAWN_DELAY round(config.respawn_delay / 3) #define ANIMAL_SPAWN_DELAY round(config.respawn_delay / 6) #define DRONE_SPAWN_DELAY round(config.respawn_delay / 3) diff --git a/code/datums/uplink/highly visible and dangerous weapons.dm b/code/datums/uplink/highly visible and dangerous weapons.dm index b7aa4de317d..82701d2765b 100644 --- a/code/datums/uplink/highly visible and dangerous weapons.dm +++ b/code/datums/uplink/highly visible and dangerous weapons.dm @@ -78,3 +78,8 @@ name = "Anti-materiel Rifle" item_cost = DEFAULT_TELECRYSTAL_AMOUNT path = /obj/item/weapon/gun/projectile/heavysniper + +/datum/uplink_item/item/visible_weapons/chainsaw + name = "Chainsaw" + item_cost = 10 + path = /obj/item/weapon/material/twohanded/chainsaw/fueled diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 384773c4f33..7eae7d4a80f 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -901,7 +901,7 @@ About the new airlock wires panel: /obj/machinery/door/airlock/proc/CanChainsaw(var/obj/item/weapon/material/twohanded/chainsaw/ChainSawVar) - return (ChainSawVar.powered && density) + return (ChainSawVar.powered && density && hashatch) /obj/machinery/door/airlock/attackby(C as obj, mob/user as mob) if(!istype(usr, /mob/living/silicon)) diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index 942902fe203..3b120543521 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -104,5 +104,10 @@ name = "empty basket" icon_state = "chipbasket_empty" +/obj/item/trash/uselessplastic + name = "useless plastic" + icon_state = "useless_plastic" + + /obj/item/trash/attack(mob/M as mob, mob/living/user as mob) return diff --git a/code/game/objects/items/weapons/material/twohanded.dm b/code/game/objects/items/weapons/material/twohanded.dm index 26eb2c42e3f..29dc2185dfe 100644 --- a/code/game/objects/items/weapons/material/twohanded.dm +++ b/code/game/objects/items/weapons/material/twohanded.dm @@ -308,16 +308,16 @@ qdel(src) // Chainsaws! - /obj/item/weapon/material/twohanded/chainsaw name = "chainsaw" + desc = "A robust tree-cutting chainsaw intended to cut down various types of invasive spaceplants that grow on the station." icon_state = "chainsaw_off" base_icon = "chainsaw_off" flags = CONDUCT force = 10 force_wielded = 20 - throwforce = 7 - w_class = 4 + throwforce = 5 + w_class = ITEMSIZE_LARGE sharp = 1 edge = 1 origin_tech = list(TECH_COMBAT = 5) @@ -327,6 +327,7 @@ applies_material_colour = 0 default_material = "steel" parry_chance = 5 + var/fuel_type = "fuel" var/opendelay = 30 // How long it takes to perform a door opening action with this chainsaw, in seconds. var/max_fuel = 300 // The maximum amount of fuel the chainsaw stores. var/fuel_cost = 1 // Multiplier for fuel cost. @@ -334,16 +335,26 @@ var/cutting = 0 //Ignore var/powered = 0 //Ignore -/obj/item/weapon/material/twohanded/chainsaw/op //For events or whatever - name = "bloody chainsaw" - opendelay = 5 - max_fuel = 1000 - fuel_cost = 0.5 - /obj/item/weapon/material/twohanded/chainsaw/Initialize() . = ..() create_reagents(max_fuel) +/obj/item/weapon/material/twohanded/chainsaw/fueled/Initialize() + . = ..() + reagents.add_reagent(fuel_type, max_fuel) + +/obj/item/weapon/material/twohanded/chainsaw/op //For events or whatever + opendelay = 5 + max_fuel = 1000 + fuel_cost = 0.5 + unbreakable = TRUE + parry_chance = 100 //Gotta punish those validhunters + default_material = "plasteel" + +/obj/item/weapon/material/twohanded/chainsaw/op/Initialize() + . = ..() + reagents.add_reagent(fuel_type, max_fuel) + /obj/item/weapon/material/twohanded/chainsaw/proc/PowerUp() var/turf/T = get_turf(src) T.audible_message(span("notice", "\The [src] rumbles to life.")) @@ -372,26 +383,36 @@ powered = 0 update_held_icon() +/obj/item/weapon/material/twohanded/chainsaw/shatter(var/consumed) + var/turf/T = get_turf(src) + new /obj/effect/decal/cleanable/blood/oil(T) + new /obj/effect/decal/cleanable/liquid_fuel(T) + new /obj/item/trash/uselessplastic(T) + . = ..() + /obj/item/weapon/material/twohanded/chainsaw/Destroy() STOP_PROCESSING(SSfast_process, src) return ..() /obj/item/weapon/material/twohanded/chainsaw/proc/RemoveFuel(var/amount = 1) - amount = amount * fuel_cost - reagents.remove_reagent("fuel", Clamp(amount,0,reagents.get_reagent_amount("fuel"))) - if(reagents.get_reagent_amount("fuel") <= 0) - powered = 0 + if(reagents && istype(reagents)) + amount *= fuel_cost + reagents.remove_reagent(fuel_type, Clamp(amount,0,reagents.get_reagent_amount(fuel_type))) + if(reagents.get_reagent_amount(fuel_type) <= 0) + PowerDown() + else PowerDown() /obj/item/weapon/material/twohanded/chainsaw/process() //TickRate is 0.1 var/FuelToRemove = 0.1 //0.1 Every 0.1 seconds - if(cutting) FuelToRemove = 1 playsound(loc, 'sound/weapons/chainsawloop2.ogg', 25, 0, 30) - spark(src, 3, alldirs) - eyecheck(loc) + if(prob(75)) + spark(src, 3, alldirs) + if(prob(25)) + eyecheck(2,loc) else playsound(loc, 'sound/weapons/chainsawloop.ogg', 25, 0, 30) @@ -399,7 +420,13 @@ /obj/item/weapon/material/twohanded/chainsaw/examine(mob/user) if(..(user, 1)) - user << "A heavy-duty chainsaw meant for cutting wood. Contains [round(reagents.total_volume)] unit\s of fuel." + user << "A heavy-duty chainsaw meant for cutting wood. Contains [round(reagents.get_reagent_amount(fuel_type))] unit\s of fuel." + +/obj/item/weapon/material/twohanded/chainsaw/attack(mob/M as mob, mob/living/user as mob) + . = ..() + if(powered) + playsound(loc, "sound/weapons/chainsword.ogg", 25, 0, 30) + RemoveFuel(3) /obj/item/weapon/material/twohanded/chainsaw/afterattack(obj/O as obj, mob/user as mob, proximity) if(!proximity) return @@ -409,51 +436,32 @@ playsound(loc, 'sound/effects/refill.ogg', 50, 1, -6) return else if(powered) - playsound(loc, "sound/weapons/chainsword.ogg", 25, 0, 30) - RemoveFuel(3) - user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN) //No sound spam + if(!istype(O)) + user.visible_message(\ + "[user] revs the chainsaw!.",\ + "You rev the chainsaw!.",\ + "You hear a machine rev."\ + ) + + user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN) + playsound(loc, "sound/weapons/chainsword.ogg", 25, 0, 30) + RemoveFuel(3) . = ..() -/obj/item/weapon/material/twohanded/chainsaw/proc/eyecheck(mob/living/carbon/human/H as mob) //Shamefully copied from the welder. Damage values multiplied by 0.1 +/obj/item/weapon/material/twohanded/chainsaw/proc/eyecheck(var/multiplier, mob/living/carbon/human/H as mob) //Shamefully copied from the welder. Damage values multiplied by 0.1 - if (!istype(H)) - return 1 + if (!istype(H) || H.status_flags & GODMODE) + return var/obj/item/organ/eyes/E = H.get_eyes() - if(!E) + if(!istype(E)) return - var/safety = H.eyecheck() - if(H.status_flags & GODMODE) - return - switch(safety) - if(FLASH_PROTECTION_MODERATE) - H << "Your eyes sting a little." - E.damage += rand(1, 2)*0.1 - if(E.damage > 12) - H.eye_blurry += rand(3,6)*0.1 - if(FLASH_PROTECTION_NONE) - H << "Your eyes burn." - E.damage += rand(2, 4)*0.1 - if(E.damage > 10) - E.damage += rand(4,10)*0.1 - if(FLASH_PROTECTION_REDUCED) - H << "Your equipment intensify the welder's glow. Your eyes itch and burn severely." - H.eye_blurry += rand(12,20)*0.1 - E.damage += rand(12, 16)*0.1 - if(safety 10) - H << "Your eyes are really starting to hurt. This can't be good for you!" - if (E.damage >= E.min_broken_damage) - H << "You go blind!" - H.sdisabilities |= BLIND - else if (E.damage >= E.min_bruised_damage) - H << "You go blind!" - H.eye_blind = 5 - H.eye_blurry = 5 - H.disabilities |= NEARSIGHTED - addtimer(CALLBACK(H, /mob/.proc/reset_nearsighted), 100) + var/eye_damage = max(0, (2 - H.eyecheck())*multiplier ) + E.damage += eye_damage + if(eye_damage > 0) + H << "Some stray sparks fly in your eyes!" /obj/item/weapon/material/twohanded/chainsaw/AltClick(mob/user as mob) diff --git a/html/changelogs/burgerbb-chainsaw_fixes.yml b/html/changelogs/burgerbb-chainsaw_fixes.yml new file mode 100644 index 00000000000..92199779531 --- /dev/null +++ b/html/changelogs/burgerbb-chainsaw_fixes.yml @@ -0,0 +1,7 @@ +author: BurgerBB + +delete-after: True + +changes: + - bugfix: "Fixed various chainsaw bugs." + - rscadd: "Added Chainsaws to traitor uplink." diff --git a/icons/mob/items/lefthand.dmi b/icons/mob/items/lefthand.dmi index 5f191bfe4f00d757f811f1f15d786dabba77cbe9..244e23fc7d875da5e18917ba10f1d303bb57a44d 100644 GIT binary patch delta 22505 zcmY(q1zZ$S*FV013W$_6NUNYI2uLolh?F87B8^B0(w##{NsEfKgmiZ=p>#+t9nvh_ zuIp=;)+>sTcsud#tD!heBAo)??BH=S>xiXmGusoFC1zz@;o9oVom_g~N@ zUl=t7Kq<*fD>rIMa!1mO8ltAI9v~mZC}z}!blDt@Hbly;*PyMh{sLVkCzQU*6FM~ptpJbKt+#U-O(8@{@qF4Ji1 zBa-N4ep_W*qZTD)KzO#N&_T(mrfx)5RWu#0rEU}*LdwKZ9$xRyTmFK|XQs@w*p+N| zq10#FE~^0X@MPl;i8t9EWDy#Yb-qH0-C4StD=vse)Mu#fH8H*6X4+hS`;`pM2uOH5 z5w@Sd1vy^|O;%SgZwI_ZjbjS7JW}m^#XWoqrJMH9!d5{+lZ?KS1z)%PsPca?FP?%O zPkb}Q!Q<@T-+PBG>df1Bz0uHoz-r4goCfU{_-DKRL*`ov_AJv6LtXrTPxptmF)Kps zh#fC_QgQoZ)_{?Q<)Puz&s}YTK&y?$xI2ea?o6k9e6e1YgHP?1;OmpmgbIQ8X$skZk6%Rf8aYw-5}qXC0fj92@UR%H>Lh^C9y<^RPQ$}o-b!5j zgvCa!DVFp)^o!1Toeo(ZdFyc}o%DSAk+kH#Gds(qdVSHKFLHqQ3PvA$wV)n6E>C1< za&9Q1?aRgSsS`)B-0JFv-)|aj8wA;0($lstH1@%0$<2Xe`#4lz-*818J*ws6M!0g) zlPj{!0z^UfnPTYyfiiH{G_pY4s7oqN<$Qg?Xq$?1^KFlk($zu?1_{TI^rXgfVvMvr z%G7R1cWg90ln3?vs+ai>dac6bAMASEW|ItCM^m*nSe+sHl z8&Qu1%)Qn(+??8~-qoAvRoFVmtong{^^DtuT=gdk>O^;ZQ5E)S-%tM6zqc<o9V$mOMpvfn2X$`;5>8muDT9=X3%2VD zW_%Dm`}t?`d4 zZ>^uhLo|9x0;>R~)C>*#&}S?=J$y)GGA)J1uzC^nr-%Oz?AMf!`sT_CzbWz9lUPo?M@C#a6THKOB zsBMv!B>6HUJtut2!4zVKs&p~u8v`X)CEL@uQLR1*Er-NvUL?KgBG`&&P|H0u3t80u za+b{f%I$hvCza}!Y$%06t?{kc+F4LSigv~~%Y)yp)&VKoK_$K-GLskN{Rz_JFGvey z-eg6qBkEL&LY8#SlDF^O-7*qc-iQ&j9Q=Ws*c|^}J6+qU_H|bRIrG$e4iw(oM0=B8 z9JcVKUnZ2`CcYZm1)XI^U)1plcF7_0^|+!U(MMQ_A}bwoQiOw}BCebIHUmUJjYgNr zsU28|+b*T+&SQQiS*ku~pJ|1o4ky1owu~8N+4vDge36Nz@avHQ@on^*x4^rCA^y_nO;spCc z-V?@WI!LAc*<$)e$GKJ{DRQ_%ekgS#nNl8p{x_lywc9wHr_Q-OTdgU})X6BsC}jO> zALH^x zr8t&EO6Lq6YU<@tw1LP(ko*RR{k!MM!{v>PR^#0%A@}8J>67Zoy4+XEX@nsa1woUk zjczwX7RKL9?OC}nI#w1T%^Hy#CG(J`DVhOw2R2skqtj1;1Q*e%wzg~BaaCha-*?5k z2sdW#W|>4&12n|B(Vy~Zo8+0=3yM~?laBMW3w0Ft;#dSCNn4twI?+KLv&Sr(72w@r zvT-Ucume!O`l{(_`;8gnkcPPr%*zMW<1yw1Ud1v9Uc)CR-yUd$6~LV$pSW#3)@)~t zam2Phc}*0MU;8S~u+c^R>05UYE7Dvo6<%lmU_uY$CMWPJ<=SvDU@wwQtvYSVIfNM5;;+7)iK%nB=wnxmD|bc9xE-0U}**m-R4Oq zYqegRS%K}YPNZa=pRJ^Og}qMb=q-5RXfdm;KnXd69^ryrjf%qtvmLWYT~!P8T1cJF z9iB|!vtdAGB2v`rw6>S+Tbn!j>85(6#XxLALMZKk{&{EodZVO}5Y49K$m*_SBNCnT z3Y_kv#32RaFO`+$JU#2>vfNo|&^iy6;vd&JUn!rXwy-ACu}cCaZ!`@YYaZNoU%9j= zuN@R22sIg;bgVeu7CXlLHPLl#dZk^eZJi9n`hWRC4NxRIAhDtM_0tI#Nz4=ACl<}d zF`D*?9LqD+&l7kJ)#mqDuJBv*3^jb(&JaI;PAIpUYaJ&mer0!F?_Oh`AqWi+<4gHU zPhv8MvPyzM2B0-vAU{_uhnm&)5bsPXHqFkaPyHtBId1k|d$Ohq@jv`_yYRH6y_IAQ>5sSx7{83Q|GefKVMdx^&gN5nFS|xW+EH&O-TMHH2AF6?HB2 z=uBLrtIuUy{aK>4U5`0;j~|uojaPUMZNvW{7q2kvjKhvzh<+*xdp)wa$?;Ka^Ddst zLxzYmBP_W;9q^%W*?gOFlXu$T+mhY+q#%b=FJ^8A5Ar^k&(!{K$afE_tKgoKel7kf zm)e#a)zxCZROw&@-9M zDd!DX6Wy=*{Ea_CP4E`2@dJT5uj9U|=jV&fUqNC4Dk?rK(Y-1Azd>g@e-qw^-pOBf z-KN@Hp@TJFhdf!l8f|UpWkP8C-P!kS+`=&uhfKI*RG;fDDJk;!5Em=V?*ecMsU{$% zpkVoiO#E`hi?3=Vj4$X5L0{ngST4?ZJP#!kb={&KOofK#fD#4T5>cP?C+%V}dVn@_ z>1esCyOC4=2T`wEFNe~O7HAPg4_eUszE|kbJ>{4epm#Z1tbo&oP|zp4dGn^4*WYV@ z|1QUU{v0?Yg{EFgQNXz!<*M1q2U#KAU&zAiM9<;A(0BwMsW6t6`VMdVR*aM&S}4CD zI-y(vq<`h<^3|@%>iQsi3gFzRJ?=>xyI*`h|^>OafvHLDyoNl5+Fo0(Pf^g$@Un>j^=T``_*Gt`zb8gt$38Hq(^{ z9MA?qOr~#>VG3jJE}C*GmP4?D|I;hQxpm7hi!@5(Q8_d__@=-UPy@luz9(EFn`SDu zTV0YZLY99>u|5+f1`+TzwG}0&N{sC;@@Zm{6$NjXz;FZkH6ef;pXP~bTqQfl6tnHN z-M32iBF5yGaf5;ycAGK72@Y-wgu8YVzJ4K!YYY!WPD4R(*WH>BFo#DCc*-x#`}#ml zohc?5rZAPo&VgH2gC&NGcAKjEm&sGihC3f@2G;5NqrqESF$IpB;xNOFY1R_B<@PXAQH{@o_De_erjxaIM+1ih3Fc$dLsS9ET* z_Bh{=R$K$dFf%foIrhN)KU= zlES*&xoURyG7#vX>+QX@(6tm&*%kvJf;U!t?1QeKy$NOW(J6Hs@lbxH_$8b;Jg4i+ z_gLK>$4akiXCJ8$hc(j#D=+1DKW*#l^~TGCbl(oeo7@N{Dj4FEMv=M5A2^_!&p83#;)Dd@nVR9G6QQmf|av z+Di@+0wczyRQk4atUc6|t21OHP6!wGfXd-?MK7GAC@cH!tFgN^Coq>Eb;lj?iWsuI zoAe-RCWR$=JaFAE1aV0<3tG4pVtGgk=>q{lpT=52L7&p4j}-)L*$1LoA(Y}!&nrdS zrP`&IWWf&%#wL?2qG|oTb8wZ^L@AROCpNvk%StPs_oJUsGRXAa(~c=cGP(h`Q$Ie+ zUlyfPEP*o1ev7&4hY4j29m?~Deg^PCk)K0~JT`ET+Qm4D+o%cEeNN!(8k>f*d zp0fS|&!g7nNlQOAWdI+O8X1hXRP$Is+lSDXP*LQBut3-=oeJFUzOLd2{Yh27H^Vtw zHAQz8b^;J()+})i_EGjCZdtdz+t*u-2wMCY;Ex>shS74yGM8m0N zwa@f5M##-S;ubqWsp-I@t=BWV_GYi#t_=ks4vqN;q%F+TnStr+X<%=?Pq)K=eUue5 z_hXN?7b9$S_vvYVKw9SFfd)MJnCImg*WVDdP+VnP^%acQxX})mBVTY6pbm!422maM ztq6O;=KB>9y7=L@q{*JRQ-|Dv1Vk2aQ5&3L#BDJMx#sromf3-*ET|beP8;jUEkJ_* z#y=Uc&@aIW&=kOo)(cL!R_idbyQfGM+ZB*IjhJ)%!Du)oYNC`5Qf80#a&)_jnmp;E zb65;?@$F`MY3nS~!Gq2(CQJ~Qe3EH3S1bSNH^pJPO@W&ofwbJ}dK6dH(=7ED+CNBI zu^+#`v4OA=o)tT;5q-LhHt7kWCUE*d1V@015CzyLT&Z?x&)FRh&_|3f6Md1?zsVVS z0^2kvyL#p}Dc}=B>VvP$IqAA3O6{3&2-pyB zJPf%f!}v_NU6N$p2e&2)$8OVjx>HMdi5~_b-H&{iU45q3UB2o z5Bmz+r!GO0MQ~Zwa?76OU=AT_k0LI-aVO+w$Bg24Q8Q>6q0Y^w!RHLN*~5S!WYX^t z|8j<(=pS^*e2LR~RFOBG{JAGM=+!q`aYBH*nOyAG#d>JR3dOVGAc}OQ7@Qq&Fa!FJ zaUC0EuH20!p{3Sov^~m{YaMA|MR-p95|k$9lln< z__02&%z3>U!0L&~v`;=@?XmNYIG)xBj8OL3V}iyHY(ofrpshU;S;oG4#vyQO1KIS6 z1TiQZq;6e1eBIIt)xq#DLYObOTaxIso~!@oQRLiE8#L9G%pG~VXLf*ScW6+x)@0UD z@MpBIzzhM#*gO+rkCm9(WUuSZl#969gQJh$0mqU#&o7zTKAWjkaCp3W)JN=97+`O& zEbmwESQLKIC3i><^?CdDtXA`|FQ9mV=<4Sp2jqM~+aHgDYl~r86$wb`{NZmeM^Rum|%!^7FpThw>3MYqM4IrlWUVl3bAqv&O z#+wYvuUPuOWx2HN=PEuQK=aGFSKC58iYiLO$v0*YKmGQ-0 zqh0SqwdG=}Z&6mxFO&7Ocv4Zfc)JaS{&^fZc$Jz_FE&*B}^l3E#30``Z&S_ z;p&oW!%7=N~p zQm^DIIbnWQ+fAWifzLt6jW(8+c)#mGk;obR9si5ergu^QyL0AG-4p_4d~e-a`R?5L z1{zK(s@toerHnP+C9#A(X#AzcoeV1ZdG_{gES1%K@<^-kP)G&>D$M*Cw4$f)eHm1Y zAfH-}b~Hrh#o4Pp34mLE+bWRO#jaghYiIkbuy|)PGh)an>|){oYiD)!+4P__U8`}9 zKAB(VpMF4}hR1ZQ(b^u!tLKNgoK^N3j=E{^y9=Hc8}rR`Kcq?4uab*D7cJzaiYxPC z%ktS2{d@lnqRXxM?*02OiNgy^TNE0x{GoZi zEX}3pQcz$vR^=_#(DHGs(y?*WOi58O)~qu!j+mHOL*}hTY0Y6MNC4 za*JO*iOthMuUd7APfudXB5MLKpFDu!mr!}BNZ%|tYQtmf71{EPEXh50oB#4g@g>cs z(rHxGN+Bn2sXMP*e{I(W(@NdF!d2W}4F~S8oER}X*7vuR$8mWL(Y5Rc^Z6{17$5uf zVCV%<%UjqR{B|TQ%`J@8~#*wO{$n0B<65vkhUVkFU1kcF$8%zBeY?Y)rBW zN`_f`Yb8e_3wMq;pZ>LA*m8qbS&!cYBPfN2?u+9D_xu@a5nXlggY(uI{c3BP9W}{k zU`9@_iGvVppm}mPs&hv1-9L0V?$Z0$QD(ljvxQ6K>2iyZ#v`M+px-=B1t*9}*F69p zLjYX|QI&lZ^TMIpd2@Vdc5G<&6Ki^*9)&eU%2`WDcX!ba<>_>_4c(_`8e)iULzeDG z?`ypy%)jv=;GJ;8Mz=SD-9(XA`3t=J;DzZ#$Zb4`>dF_Q+%Dax#o-_3VU)!U%Fm84 z;oM0RcQf~%MGzYC(vdgK0@+=_-+%-gc%kQ6XyIe5_gnDrI|IO855=JAAkxFLh1GjX zRh`ic$O|!zojOc;6q0qO4zoL)@BSQ%`pL!AqteWz(>U-U3Or^WzvE=^U>XNQk$J_qlp8_Mw=ogm|je(|Ed9h)PXcGiSZ*=9=E)#21IU zTYG;BT*VuScVn_j^!Ee9z_+BkJ6w?H@gV?y2nToBnak zPX13?^np|7BaQ4*?C)eKsyTl_krEjE1Np zWL=Ydu2hVwZKN@_(y6i?+A@Rj05qHGu4eYFCAVV?=QsH#_HsZ{R z4N;;&2QgmA3XrH+&-6dKuuCoa?(K^y+sgct4_i8A`wO`PN&5eXh(fJihVK0R9RYOr z_2FW3);_#^eB>`)yvVV^Wep#qZ10&7y81%%3HGv1xn#;W(2t)HKEM%kXzxXj_FUHtN88* zG<~PB5bLOBJ4%iKoNwc9_9!zh=cIqpZroXjd3r;Q_7abFJd8&C^ySH}CDcu`@b52O zSEQ=wa`;0Cp+CB@mH;wx)3|+pB^@;%Q)5LP%_4adf(tlh$w%EOU3LZRHsYtGC-Tjp zTbaw>`%Q>c#63B3WhK=6*00!Y^Nz<%#bb(vT~CtQ6AlJF1DKfl%sCl*EqkBu$-=bM z?39S?J}z8$6v2rF#2+dy706eswU~IQiJO;S+0M6$;1X9HOig7ccOi=-z3Ead2`w{Z ztJC_NI%Tg{EYyMPi>n9kaUm$kAFq`iMSbjNtXm3{4!zO-)MMY|!+aBi{~kTrGJSko z5aIIvQb!HqKwRYb!7PPN*B_lO{_)?o%lA0!MO$_Wp6(f+00)CUZ>||Iy(uzSM{TSEA1Q-IE9Xp9b1Aq@f-c`4{SyXp5% zQ~e)t@|1*&pzg_mR`A|mUsQA7*@s{(+IijN>|&wuY@2pdF(HVMyfa@j*I{>7EITLX zeqd0xJYJ#S_mc?}zr)Gzv_hK%w!&F!0sgY_E=jYo~ zm7?CKA142WzJM+%P^!pE-ZU^-El`mI*k`T9&5i>ja~{qH1M3AutMgE|u-^o}s$0t> z%_l@~QrGMKI_Yrcx=J6Mtpu%SpZ5|8oWTdox5mYjt?B^yohr>8alg7GW9#@x&m8W!m*n&Z`w#kCo)5zC3CEYRmSk8dBj9%)$ z(CuFIpNM8G4{YWTi4gx6OLM|mFQ;z)1%7UMdI?{P&rM?Nc)z<^gqSH*(-ZGTX)kN# zWEDj3E|nNA7u|&W`aTxd2zY*d_1m5lP9SdnCNf1f4s88vv(^lv0&=>fdV4jiU3A&o zI&5Y)swSFbl3xWYWK?tc@}J8qYc1rEaB_tw2ZWF@JcMH|ZB};rj$rRCtk1MOSHHe~ zJ8GG1aPTqR%?tpeaF27IjfpOtx_0YfF*naJ4VwI{r6(W53jPxb{DilYaqkSunN7+`88oULLjT8b}{!F`Q*W9;KMo3~x?JiC=9BP!X+lb9Lyt+67gz%S| zd_Dhyr}X0Q@^aH?47IIx#xWF>aqeTZv-quGGdJhQ@BCjA<6y}Kt`97)joG$;8V)`W zz4dh+Uczvy(4mA2P})Cy{J7Xr-@qWH0)Y$KCRRvR*gV0? z!Ep$%aMqzOk)`O;fLaA_Fs$)C2H_WxgPVkt~Cg=cq4k2UTCQ*>|_VrO- zi7SU)Z&O`77thvhv5MP7A$ft>3w`aNu;Wg_|GfQhR(f)vF{M}(1^u3kdM+zFeW*d2{Vuy9sijXf6ImAneI4Tm{Sj9Bv4eFR6 z`(4lPrD1~5pu2t-QlzNT)pCMV9vHVl6YsXwHCpsaA?L3z0#O&^zrUkS%c;uN?D>+D zY#yC}f!C&cv(lpW#%YQ>X%9m|0TJ=7>2U?t-!Q8*Hsi+ER^(OVt#sCgu&#v%Ms{nM zEWZO1EZWV^KFOo9cMsDgEA0#dWF?ua1#o?qA^u;dKaWPOf ztKJ<&0LbuNy5i>zF@AaRz`D`(M>UU$BPjjHOG+!D}>5aqvurCS1z}_XulCL*xFsBvW zI}=p6hy|HJY}&00KQMkJ;qdG&0$??kwyRCcamV8OzrNJeC&yuQFsdlh-->xe}*%*TJuz zc+}&#t6W~AG*vRU5Tc7LW%}u&qJDXlwB;o$`;g|#%ckRtvlciZ!E=*8S#0|v^lv#%2uLH{WrBS`e|&Qqwuy7gwLhlc5IN;aVflFT!ZqF4FmRn^ zlMi;w2npas^mSENz$C-n#<*m+o@7$nX4>5x7nQijdR1zAm2wfZX-Fzc&miE;nT-mX zK@emV#N;laAdXd=os7?~Rr#uEpIWeUUi8$hUsr#fxv%*&@J0aZwNRhoYn>{LV2rT- zX!NlfjUQtmsuDc=BXlh)o3M=?{(1s7ZR`iogCVD*ODanBZH;rQhOhF{ z$5x}8?opohb2ZwVh+h-7`oRg8;25aeo;iP+ty_Mxdi8v`nakYVd;?L+nlmr1Ezd|a z!+f_;zEyoab0WN1Z&01uxWtu=+ubCd3M9ni}TY|D)S2-N8O z81Yep=f{rQS1u6+BQNEqgIZ%3it*P=wh~xFS}_|<7;xrF)`BtI9cm;~K5LbnrI_Sd zD$!o5ZR7Ff;MgOoM@^|M9I#gV7@aW>1!N`x^fANLT;%=U($S1UH}z}nu2cB2eVBD0 z%TpKHDqtyr-v+3RQblF>G@{J&Jc)TZ{Ky;EdVY|i7@xV?2xLmvgLiBD)T+(s~cq* z@f#&)tHrN`>zY+TbF8!NH{sjm%vR_QFuCl!c=Lwg@87?FN{wO101`nC5-7w>1S4j* z#5;cskvLYX9+E`&kLqDF7aXkTC9YVc`Nu*R1JF|qu7&U}P{j3i@QtgTzJf)DPeF6Y zZ+013whlA9y!FPwAaXcMp~IHlqwa`|!Joik=YUT6?{ZnaoPLwK*2AKdjwE>VqyN_h z26(9`X(Y@3(h<55r8ItZo~-q2t^xZ}j=bQPIknY4B7}qK{QR@fK(({Y8J+I+E?t!I z&AC?P=BXOrWVL$el;~bkW9uCIG{xk=l3iOHzNzcEt*Gzi)0$n{-FR%JJP<%^dW_C``lXyJd{t-Evvmzq*eGlaIaNbbTXdeFr;?~PH22?sH8)}05x4=NZ*OACIh0;}&w^(=W)u#I6Onf#mqAn8-J4dU;9lc!=R-{fF{5BkHX zC5CT$NZ5A`j($xcz}&jzc~s`MqxaNyVoV5zV(1^7F%gIG!PGyoy3b{~loc@Gt=Qie zjs+doDxZUi-Fj|6!C|_ptr6BjuOEF^Tep$O^l#rnq?%FZ*jQtc%Z5CR8<~%fiJ{@i z=9~f`4_$Z2+jY;5WIJt8H(MQhAo4oOa!l8Aqp-s?v?Aanat0r{Rbcb7AVqxDVk%!# zK~`YTp@aaED(?F6lV4%YP93#8k(B$c!TXOjeG6Wd^Lyc)zF^{34$MF!SoiIqENJpL zw=m(W(g-FmL6>f|#Ob*tVd^Epb^8uDDArul+9W2wU$IjzIcQB(#D9PA4mv#e&1Q3gv(OzjQ{O0lTP0Gp zHtp6O(Lbz#u#W|cGem9cF$|i^{Nyq>IUfnP?|}v|%%8bRrj6IS@MLH7bqf}Q8V6+d zgWTtSt`JLt4=6jC9+jiEGT#+Y+#-9!#)=&hu3_hN)H7PB^6RvPp?eJHjS>(IHCAB$w8gbXHu(?KecFAV0+tc@ZkB`$@V&a0yvFkh# zPs;H|yD{B*?=#-)^f9a$-e4-~2A67Dl=Zwt{%)=HOtcced#6F7z&lX@vRJ>KCWt<% zyDAp>JzL+>MGKicZMoIvdO28VD{j0o9oU&QWG3e7%+*)Do82nSb`<{V0)(T>89Ot0=Wb8ZK|9oAZcY!i zD8l7wuytM03_S7idoq3B9;27ePMIhLSx{wBWTsBVMmd$t6g9;mmI8<2q`2qdVKd7g>Fq}3ob8Y z%DWlB`W@>JCnxU*q$SW}qfV1K%9H#qc`#8-Jjq0(u*I6~lWKz5=((x_QGT7d%PcR6 zhJjMv@+QpBpFhLEp+!yoZoBhJ@#O2!`VRd;y`%0~|nU|p?Vq^7|OA?s=0D%3tTc=G<+ z_rc*)|AWGEn0Gt4DDGxIx)R=)PR@89(tET%^n7({p{2TuW92V5O?d8>5~nmb0BaM^K}oY(Pym^HL5I``Tbz=Ir%3s=QWf0 zCeKzXRTIp2e(pz)WO4isc(RCERd#Z6s^0eor|a(`_AG1ti9tBVM||jr?4L^fyJ?w5 z3r?qUPEHj7*Lj00@(&oM53{~;W(l?fHdmJevyfRNT!XO%x(7CedES)x`m+63-(|>SBpcBO@BwKYu1lB{!6KiAPxcM*&pQBqEM- zKV7lACXlZYK-~7`gTYIO!<9GpPF(1Ang%rH?0M+B{A6$YF-3M2h|By^8UBd1*qCI3 zx?4EYd01_eh;0I&PKiY|Cnzj?8UKQ()1b_1E{~NcMB#1c`$V0>vh#|}g>pMLb6C`0 z@lz4iS`FiaBYPCO(9_d1+2G2P=C}4fP7JDvbf^{XThQf=6zq@U%DtKz@}pIM%y*pI zLP4L$5a=C{=xI~$njY3qED>$C(j8|t*C3=512c`!xgZ6^UkITLouV z#_5PtCQMe0#6!+hXHl>cvgiBlX(fo&Y~2Ge!uV;qD`L3D7MddIO}0LiP5`+h>Gq5J z^{4dzsRg*A6s;bc`G)#ggIuU}2N?dtit%=_qnU6ool55>@ss=2-UU@oXYTtzbxG6V z%MX_y;){=1KnJu6m9*qgz$XiNQvQ0>8v8@PdfDKYap*&vH;)~P+@dvWS?=|}%o9#C zQ;Lz3VEI~IL@TNT?ZUBVTVSwlzQUYDujWHI7;gC|3OESJYus`NM5%R`TZMR#fUYc$ zHi9FTSXJ1Oi>$MgHvmY@948j>T_Za_)>Q2??FcdL{=;69XvS@^J^)GSUX4@}K4YD6 zbdRW%hC+U~M&u@EoH6^hlbP8Rp2^f&O#5l391Xl-7)a^JXjpjJ`Q?w1u-z;*I6M8C zZ}yJ;HbD?d<{Jzuh8%TgNWoc~!X@T6Fqc=Z@%x{AXaLW1rKj!O2p6N6L~77Ij+dvK zJg$B+EV-95ppUJUuqZ8> zWT7BP;dzkJ{9*Jy%e{MCf9f1HQ(ypDXII>f#kLa{GPfvc@oCRcXUVVV`%X-a?oe`O z0WCiOeS-Lw=2!y4lYfQ(o8gxJRGzIzfUi-N-5eu0DYS;N`i0T(=*ZH59mo}=`S+zl zhtqAbr*>b%t^y^7>$Eur(KbTpXPF}dg^t_cYJoBpeCvk9m@5XibJO@?M}bnn*c9!3T^7x{4A_8YiRr2fTx zi-aTQ%JUYpz}O*HUKE_kJ;BQzcYxsZG#D4t2qku9C1HnfXn-;>pH~-_wY}s5Pkq8?hczGp%5xaXeF};{0%~JF8#n?Vx8h;$Aj!I zOI<+x8DMFqUUy1c4hydNzpin=4xwg+h7_01X0Lid*~?(RyQ1+RgS5T@XjZ9wxtKc4 z#E36CJj_oDweB=LW1nSvP+kV-W42FVqkEMWneeS?1!&lNKiog_XbyEWvv8$@-&$tc z@nor!*fi!~&VBwXlZf3l$Q6bhj&O>u4tE37`}MHw&L2pC1BSh%VN&1c5GtJ-28CZ9m0b#!QT0M}})vmNop zCHfq88!~NORMUx%@p*Jta?k~W4@fX}1zTLbN(`+_k>vxA--Kry$ zG$DeH?*`<{Ad4-i-HwnbrYiL1{N<_+u`J9T z#8yN9_+yMJ&Fji6h)&(6Kf>LBpThyqnh)(?&uZ(=g9@_y!d5+!FD<*4r7y zG;A|^AELeFF7BT#GN0!L%k9_$i{-CaRg=Y)*H}gU33&icM!VGanz$IRh+ud>u;x7cAQNvf3HQToMD*Iw z7emWvtuNZqNY-Q|prm&~v74`~(a-vjBdM`h@1cXlY4nTQ3rC5QWQiqtvGrZCmt9Z5 zU#G*5Ox4)h^exb08qQtDCnV&8b%s-77R)Hlc^>bzBcRkc{L+KWEVR<2belojtTG8a zCRXq9RbGjA3b~NME5E&ytHumVNzvA2D7Z3*zrB3%1c&K7F7tC&%aoJL%r?{jA`I8Y z5fc_!_(gS}*x&nRzL~nKiO0Z-*W(GYFQ!_rr>zt@W7ldQ8A6 zaGw1Hzcs;cm`p^{M`(lxn{2`5B4F5cUYc46Z(ziFHZj|Ioqvb7Z1ERTi(;`7^W<;d z=wGF4Ruj-SlmnvuuBb%o9xB|!MYEZZNrHP>-~|G=9#A|D?(2L0>C zhcG*TS|kFVt|kPE<4#Od#%j|jDdQ~mcO&5GM!_*dYP;VMabwF|xq24Y8N zYRv6=+6W#Oq$(DJt}d~>$JJS221KUz#O;Q-b&#z$=+gM<8|qgpw(nW7&?&j>s;_Oo zic3n;+e5$FgNR()yM|Ej^Ue+NS=ePPmkBj0#-5u=Bz*omLyWpaLj2R30WVV!IC9sm zvn)>AFz1_dK|9aE{=a=^zLO7HNp+~(;=)(S2HWYU5&*JT_oS1l+rKoX%z|D>OTY5v z%Ly2$?@rd}^;whvWHA`t@A3gns&8EX;&`)JI=bGBxc9I&W2JDM5`E9`aNK%$E&jl% zpV@afyQ1W8hF&L~B2aQ|k;I>K=b0g{bQ4yCNDq69*t=0(wt|Y)c5Rl)#V9KBud@<6 z9gP5Z5F=X>vE_5h(Pi&yTkmjazyL(0kCjd6(s=je-{kNUhT}^gnI%U-Y9iOlEgQl* zb`P#PUa8A-PX4X#GkVt*6yqLL{ohL7%igSqYrtS?gdy0;@&zf!+M>kJ{o?D;^QUf;K18Gb`>EBj5CdpSWw{g77m&qK>ZsNGoZA zQ1r$@=W?XD-EFYe$3YWlpDW+aVIGvF7GuvqGpxy0zub=Hc+D&o7S1fbe58s9Z5sMv zBi~-9>T4-oSYTe;Va$AreOBWX8KBC&e|0ouHr5@7p>RP&GoM?by=Fm*F{tE=#|BU9 zFjD0W7}xisj!lvGA(5vCD!`WTGAo>-^7CpVOOX;bqdChSQx!G~d2X%A&C${5 z&4r9N)vVTV2_NCV<@rT8iG`KGeO;Ky)qlXzaClFnpWEw6C_muG(d7AOHel){2@^q;&q{Uh`p ztm>-hYiaVW@U}iH!;(cFJBpV(k>TLgZ(*<=);d77N@S@aj(zWFmr(nep)a^HY`kJ- z$YSs?W^Rjri~6?nzj^iFa#VarLQ!{rD$3w?kQBc1=bwuBJ_tIqj#sC=8>e@@6<&`K z`aJ@GG4uayeTwa|&Z&wB+AQZ)}6>n>v$>&;0oXW`wz*;(~x^?Z0LJU}Ch~zU4xmwNTv6 z!MaHNGz__iMkZ0d_utG}6#Q;z=KdUf+SM%KF*!ax&}~l3tIG|doHBvjBVWkUD&P!c``5muq>KM<_`k1 zE=0ML((zLtY<_7V@qgC-#wkV7OUdNqBFA8U=5gPJg24ibdgn9TA;ooag{U6`TD z>HKpOu77a%k3di2KRmD3-P=2?0&6gE{kLbG^Qv+fmI2Mzr{DG-xg>pun4J5=Spv-A7E;gyuRSqG%O!Kwio?s7UBaL+M!Z8a{117Q&wtW)oy6E0 zU?$3@h!N0tXMFMat)-D$JF@@|8|4FGWg3#yntx}5Jd4mPX z67N4#QwV?=h&xTn-Bj*(|LuXuo6IE8*)oj3uQ7oEPy#PFA+J7-=K_>RtkE5g+uu6D zbq*18%dYyMWeV$l2Wi19pXg!BatThkg~N^K+g!PJ-kCq|LHq<)d}J4hR0rE>abQ{8sIDdqyAAhxXM+*EgD$7vn~b84l&h`)bn5A)DB2hz4UH9tc`T}koS)4jGH zY|k|kw%L;=)L2I<0s2DnwI_!AFPF{f#a;3$eheug$#su}7FSP1Do;CoWwZA@?;^g)5_t0UN#C^=V2J_>l#^XOzB zo{6UBJBLF`)tdvkOv1gjpyymUB*}F0eK*}3-n6=w>^QJ*I^D0zC4S1q#Uzk>i0;P= z^DvNaO~zy6{3Pzy*BcUPF>g_dC%eFe$4(Gb(~$l1q_te1artm?=c<;}s}b*%T+*Kv zfH6bL-UFlesi|4C&U|5PE8*`F%;)Eu*@0F?C8TM?{K|{?cP8}O`jU|IOU$5^p&P{m z*1K7+_l!KeS9`rm`8`MOUi^7Z9(*bu81pA#zuuS4kV^TiFl-(9Q3 z2mZert~?&9?v0NnT9FpXPUuC17&G=rmh3WR8xcarzAsnm70Ft5rDQ4FkS*H`$x>Mo znk-`*493{knPGlc{oeWGe(rhh+;h+Ve4lf^&r_BE%-)jblg0}TmSDaR#hL;fJXH$6 ziJ?U-@;WtJPL-XL^!nZdB}9zLygSw!@3nI%I2HYYH?JUK=l9BtNTQm?tJ zoY$iK-dJ8S&JU!Qc~+~L6_W{ADPHVX2;!o0(_xmgp4NrPCJs482V== z4xXTAAot~arvM<8E_GK}D?C94!-WsEs13(T;dlT2BIBZ?phNR1JWK#mqZs69J$&B` ze9F5s)yRp>DKJdr4_%UVZGx`_i4&W>+gM=Wxr{+)nJzz){fP?-!A+Wk+`@BYc<&%bS8+>NG=Kfuga+>EJt947Q3+a%^jv@2I}_2Hl$`i)k?GLu0`CpHQuSqz*<`uy3L{ zm^7tSzAq*e!a}G11sR<(;9?#zMad5RuyOQdDIj{6^M`w270Pe9e}TNWeiOOUmQ^>Q zaY?x@{?!cK*D0`ie&BZF-hwu5oh`FcmTMR`Y_+L3B>kWfyP_B#TTaC{@8i+u6GA?WfJqA z0(h<(@q2Knu(e>e*qaKALyEokO9&Li+6V=AL!&EdH1a%InM!}E(VjUUQsMn3DL#vd zoJ~!@yY4@H^h@PzX;%%@o=s*4mKoM_5EkZd;ptAtmOb<#G#->a{i zD&rA|AAGhL0dz_KdDrFN96wM;0y8a?<&k*g1h%}zi}_GzRCSi5L|VKQzbwPrJQHEkpq*SYIt zVgE|tvgwUJsN>4G zsvC>j>C_EHNef{2gaoKt_753O#?x#b;Qe~Tq0XB?*88NUWPt#xeR++=PNsqm!i9X9 z{~(L>{TmlZwI;abHLEoPRsekMX*YY7_Dv$D)I0d3aA<4kVqQZjuX(ibI zAN_|QeS}H^BH4Mb=~7pf6|NYb1n<09KUwtw5jNBsagx`*BM)d$1&8m;_=i9aK_N)L zz|moXE^O1a+ogo+tfqZ-UDV zHI0a)d*cq9)G+UO%OBFU1KW_k($E{lWH64{-M|CZ_bfHw5z+`36eaRG7@o&U&Z2h%yQ?gI%?p9w*8u0Gz&j zg6qoQ`csv|9DP`!Pkm8G)lW5S-^F=nwr(Br`+k}aGVEf)sm0Cy-=3_Ux&OXSBswu> zp0#0QvHnK>hN6K#)}MzRheb7%se^2uIG#2b^hs{3i#ln<#kTV{S2-v>os1DyXA0}T zUg$kAH4DBYsDGHWoS#39hhOMB)V>Ns(XGa|ad7N_ikyE8dp8~znxCdV$YQQ=cv7fr1+I;Dfc(dgLR!rN zCmcL5+B1A7iNa@=m+$}KYx@yXw-EQ1{2gfESpw$RxqlBcDm;>-@U0>I`={t9>t- za0Jq{I^tIEbW^%~d1w^K=DGpz&t#e$9_L7=ewylbD*7;=Tps?*-v++6 zPI>B1ArCmAP|^X*BX>R65L-?9V%6?X{RNsXxvSaKw5sZ=rL#JpELti+kXi0FWHr1k;V3RDr*N1xvBh)uTui*`nZid5^g zgX;9whcj}@e0Z-ISfv(9Vh@_C8G5}Gp8$4F)kh&@kVlQ511n|#hwuo9PGTPe2H%ed zt9Y4u_V1$$!LsbNH{{>i^q_ek(hPC~ES<@Y&P{YR)I& zVxofT>cI20dK!%;%LlyRT*bQoqS48ChN$<@;_{)zbYWvx=Q?;|q6&`p!7amq@K=*Le~O5P5;_9BLyrlx=oq&J8u~ zQgi375lY&B^kHAMD(8pQ$Vlkc>?PfEJIx5SFq-lQJBM0K4zufroN-Bklq_7@sIn8I zq@)Pt{r9TH9{NpN{Pabl3J7M8rR<^<;rEopu-l1uC>bb-ngPVAOP@`{1UM8~yM=EMT_ z>r;DE8gk;qmv07B&NXezqrFA-i{t6~!g>(~`EJDf)SMIIS+!`L6857(V)5B8k0N{z z#Npbl)xA3w!n}^`5UVJ#;17PjUc}!zdjq5cZ|wyQE2d$UewqT|U1M>dgPi zdJYva0OW41KA)&_)Y5Tv{a}2yJs%wqn@>(QAu&9vo{1hK&fbvv9;?eP5D~T~x3?d0 zu?dY(IBknGifXn0ja>Cn<5LUEphc+TVpj{k4hL~!-=<8eh(%~6m;9+l%lgb15&3M% zZ^-H{;Z}5h?oX0}%nH$fej%kf*YVLByFM_q#(raDQ#Oma!ZM8(Q$Q~1A7P5RF9_Gx zyr@+}1kyuvjx10ZaQ2^z`@ueW^VRTbaNJE&5Xp0Vx*yI@wYJ*v0?7%YU^tYv&jxol zSB&Wk>a)F+#IKFcXzzd@TG}%~Q*6R_(YmZ#4ZD%=p6A(6>L9(S;IX@>7cSYoe? zHRv#j1YGYZ*Dp-(G_kR{rTqmzcgM`fGU1D-b#qHJKYDpHT_`xE%Ppx2Z1j4h8r|$Z zJ$vKlOs6v#?NA6&`9V`ZQlk0pTR*;W3O6Blgdh{^f_KlGoJ;(w2GGqVB4E%{w(ufr z)ZUmdHxX!*2&|;h!mLI*f_mNMvMwZtY+$`)Et+oM%&k61ij;|NtfS4SRp;h zD2NJwU!76WM%Uy1uR?uIok=7|PZ>i9j|;16z1nuI%eZ6ERXA+M51tsL^4jyo*4)#} z>$NxYNYol4``8xXjOXJi%8f`jj1rs&V;9;?XJw^`TK;paiO_P)%?rMOCv>__V8Sh| ztqnv)MO8zZF*nh;ooi49dF+I7p7l)z+@yo(x7KfEacGz5;#;wWR!)f7@^;@5@^;3E zZ-o!Z9Cre9-7TM`=tTgpQswWtp_B>jw-ZLX1_q&v9lron-HZ8O|5#=c4k9Rc6InmI zrL$=}r)5$#WgdP@5?!;N=y<}V=+t#OWpQTlu}QwZm)%;{OY=6cac`sB9o083reC~z zpy^W@dc{S>%}j33aPvOwEKGMJJ<>fXU&3*rFBOAxtNds$cV{x>fEduoMMz7Ni|zdR z%u9Hd2uuME7r-Gz+@us?dcV`yA%dJAEh3p94~7nBZ-QI;{VlXWYB?b8qJyxq`!%~2 zLT{+3SdA?koim@d5(ffP$Yb>{tgNhbk(>N@SN|Vz2=RY*s#dzl0RuQF_I%81i_f~Z zNKsQ#=qIo{^{INP(30EVq*Pr>p-DZ4J#kRLnC0;!2}w!Uh=|uLEG+Zg!}6xDK;1aI>w4t{^g{UdJn>dNsIRAt?M)bY6iHiHn$1kX9&I z-<1>^A_6LM+=ivC3;Dk2CQh2N_y$(H8TMw7=2_z|?cpx9p$^thBkzG6LoXraq#K|+ z6d;pcyq{D|w#>>whq)!^Kx0;*m_G3EMHdEx4fgkI!e1rG$;-Qr)_Pon!}YmjY@bu$ zV((%zf9>h|kWVEz+hYiPaRTJo1$NJ2E+yiCq@*MR;7> zRzj3geU!ky_L=7C6dR`DWkeSS+;{Iex4W0X=mytn=IkW5La)gRGO$68wcS@rIC!Y~ zf}rBV=hN9{O$~~BQFqX~Th!q{r1D%xWYpHSY%ie0r)wDMTooK@YT7>m2FzhQckZ0* zyZ)dq`>R*0hQqoZDta3GStFFexR&j1?(V}NKQ?ptp);4XjXf9$#3?==h~LGxJ`!Q* z6e#g=q+q#7eFclH?!Z0T5UhF(nL+y`<)r-t9#AOh%9 z`SjBBI&os%5J(bl5;*Z=BIh}dG~yGo-*C({Y4Y+2D0|n_Fwe`!5`@hFFHbY();fWjgY1LqM2#1W#rFiq~v`&Ey?CNSH1OiFX z3&~@GKy=UNX`Ss#p1-_%3Dj)bVuioNRGLC^D!5`|5{$%@E`a}x;h6)b?j3+p;l45+ z^8(9t1jWGs%FRy90buH61@rNAnk*x)E|}f_f01HB4E&GO@t+b;shVBr5cp3n2>Khb e{g;41vNnMitGSY@_M^`ag?cxPw9BvCNBs|YK1Htp delta 22545 zcmZ6y1z1#F7dAYA0*aE-4Js%~NHf6j&;o);gMdgW-3>=jN?HY^ySuxUmd2q69D3-6 zVTSME^S8!$p#yEi{;jbG9~ z)|%yEv;BFqc;@#uT)*gxy}@Pm=d{mCH{~Q3aRWlW5PlLQl_n+hmn9@*{p{oisO*?M zOStcDG1PK82Q9N?^1Pog*t{#c%Rg=8>_qVV`SV=sf-n9_=Sf4u1R9gjB62ltF)jOA@Z;i0A51QTA10D8!kY@P#E zs32L0evz$Tol#7jQA)o)l9$w&+J2%OY+|Edc!eH@o*u>cwxU(uzc{GKM5ykmKqNWO z+Z?xogB=bOkL{Lo;}?RU-7wk0~ zWz36Z1go@&-|BHMob_cc#Y3ND?Dxjx7w1Ftb#`S7i}R(B-4QWUgRiCHr;2G?ZRhHT z#0XBdH6-2Y)F-WDy<9gx&Ii}x?WF`|E&njNT3Nc>($?xh&5h)_Bf_41i#T$tPzv?~ z?lOwqOA@lhgLpy(HMHF#dxz-mS5@IZM`9!q=iEAa{E1#hZ{^xjSOmPelk#cQdf(B&(T?HGPcNO_ zfP=gG(%n_-e;4m! z)2{V4Us?9QZCUkBd+2{24hiY~N+(Jp0b%=J`bgH`}Ohy(%oj}~KmL_StBBF9`hT*u=_IEy>jE*-(|f-nLU(WIt9@-fhVu^+85^|NO<@4uyo(r+ zW@ML?WHQg`>7wHY*`h8W8yD?g*1ht~KQOBR=0b$PTg z9)b|S-QV92v8LXIYWp-FAW6aZ1iXiGN>d8(jgvo_yK$xLCatw4gx@J@OQjS>(FW*f zEZArAPE+2XR}(LwV3c;4XQE-TZ*W#2(1RC^n-cx(2OLGG2@KJ8pUMxJzH|6*@(bqQ zHjfaKH$;k5&;=RH+gHX%=L7TM8UXlGx~B%UKlYJ56&yg+c9X%_tMTkZYD;P&N85~nE9zj1mcoCerCBcdWWAbnds;!^iU8N57ZUBi**+5u z&|@RbfEFqFZNg2@h)q8VIplu?SkVrCLoO#)_e@@WaPEpJCGH7Hyw+Qfvftm&b-b|) zx3}sHd$OmT*1i)vft{{?eqB2U`tcY{7P;C2H3}6tN>H@QNd3Y~Xm|JH)uY1$uC z=D~p^3hYa~X)s-j4C$d_@B;{b^Gq2p_MsDKwU3jw;ETk2i-r?+9tS;LKYw<9KD4KI zjhLS|&&hEAS!c5`va{RB^y}TadgQw@<|55w1Dqx%|7G?RNwE`?&UKUH$byXFqEe)J zTFdDzuV8G{wtoQGsUnp`dNrjFIvxoa_1j!DIUa+4^1r?$$VL%=Q_z3NrBQlH3&^7 z)wWP(t;&h6>O@35vDBIuGWZ;ABJyavPKiXNO7Zoa6Wm@YCCG@!qE>-t3FBBrlx>Z{? zR?E9hU&D9@DW%_Rz7QVRnQweVSJ70kRd*Y^HyJ=G#0%Ux4gSM7)bFQYI+Z*vxZ_=R z<(7ZPwP9MUdmB~AJfL|z^LTVee!`JDpH?++tnrv@hF6GJ#gddM(a`rC6pzk9>-RYjNs~(gUAu`cD21kQYnh zmQvK>S0t*qtnu&w4WNBcYob&5*HMt1R1hYI^RUs ztd@JK6fe&R5wyz5&CSfr?93c(iu&wV^lh)tVor1k|I&8_;I*A1q=jdSazn=%LT3*z zk~+G0z2`ji+*Y4l_&Kr^iy7q>!XMWFYKl@yN}pjNFX~sWWU8L>K=uMFl@WeL z9cbi4l3m2+PA2O z6~pn$SMdaRXgefajB zZu0S(1qm2FjGp&a;0i7cngb#wXB|rEt^H=t^U$?f#k?(4Q?%KU-;U9X%L$VHaktV) z#{Or2MAB%bX~4E?bGQWCe7-m)l+krQ(wB7}j6hO|-CgsP0U(hP@sasqvnKi=);%lJ zlVcWDkAvsHMk0Fcs3Szt5ta|#DnUQ}cb?2m?~zBgk6LYJ@g1KgA_tCVV^U9U5mRnC zW=FEHclPQDc9Q_y<8T+Q1g~mMum zE%_W|nL{KrMhm<>V6B>y`_JaRjs~hfp6y{)IDY}2L|?fvG&!R7OI@e&$oTgJj0JyP z+GT23%Pk1+`rLSXVj&S+)0bh-vuV?V*8AG05z7xzlhGd?P~`HWwN;p31=`poo7)t$ zCLQrI`ZmIz$G#+@drnhS7zuwrk#}UYQK^xqDgr9hp;U>m)n7?jFOq~rz_6rKlo_bG z4gyTmcAD4UPJ0aMeoGNWwLK}7bM`@x5}ct)5J^m5!6$MJqOKJSgWIGQ=aVP0)BDJf zuqXv3rQ4F|BaKhal2%%-&5^!r^C~nFD!DF7KLRtZwr3NX@!wT%T&3^5{05@B%nELDYu|qq$h)uIda;xDph}+GV+OB4UX(T`gkj;tY`kDW><>x-+D)Dk8xGZmb zHDpy?*3QCCPTU-=k{eGImZd%y_jYquvbd(Du_k)T`>0SK2ZO$LZ#yLU+U0J3Abb$5 zy)4D1bNt~6`A>27mCx8^+}?x0nx#1vvwzr%Hc#wGm%#2u?6se!WfIRyhkK7#Ty7{J z#LT_AqDgNkpxnylv7FejVnYs0-nes`k+Hr>@ARCOEx|H-Zi@MuUcC6-bsS277K1)H z-2U`SPIs;MByCnqI6rcAYv$%o9QH<8Tf+RP;E-*}`DMU#1<~9KjJhDV;aVP%A-e0h zjsPtqYxm<{ip4VkgrAeOk*^?Ne$J^{-4Yun-4^U;9kvbbQ%zl{J zj~G_Ay0;M3RDMEfx-vlZcgW4ggoe0Gw%Hq(Y)*BAIzL0r zFqgJTxNNJny}(re9i4-!4V%)AC5@rygK((P-e3j9n0ovAI@Nm6lJY}O4wqgJJ$XOT z+b`vM_wM>L;w~1#_ebY>$fezsapV`;)|c8AXOhIi$#+{@0B%|8HE;SS^}}K}miW;w z(cRW>r88Aj6a^%5e|-8uSC=%M_Yrx>_lcjRNp{?tjm!4ez<6OK;}16P)EoTKrI@9Q zSs6I?$Da%6KX9xKedCKFF{7XVp=`KecmGMqKeY9``-P-FFKahuiRr#Yq(u@We$$4J z^&KKpNB|nV(0^Kw4qJPw_AX^s(Kb2%Ow&f|P1<+G;q=OB+4FajjFf1)eU&uDd6_jV zCjN%EN{v9Y@|dJvIEPHW7K_v3eM;Qa-SViFISjn)?)?pu$|Loen{u29my;_CEiM($sse!!)yw`!5v=Yx*S&*~eirYT_OFGLa`7;QF1@c_> zA58<0!NW8+Se>cNAq@@DVU;lwT=ZA3Z!SwEVwaNf9$_2$PyNiHi|4_WF;$#0Ve@c* zQ|H7{>xN!xFWA+~vzFSy%-10{h}jTOf=^l~$>Pex@mcv_Vi1Ia7sVY@0QRy6IrWW~ zX5KP3JstNuc3b-%^HU+;G=Wkm|Gs!G&_oI01*c0DAte4&AuN#ZA>->AEwqcA@dh*_l;P(a(s1y0yW_u0((8Zkqs7YG zk>b~8mTPQK;Pc)yD7=p7GOg&tKUGdOgl+`?^u9!T_%%nn?cO2Tsu|@l4R?!V|2`PY zR%gZTWmn6S9^0@AS6x+NEex<{za(Be(GE*0>(O;$2^^))8kYVDKsc43N+nTwzl_uW zfC47*(!LqrbBk!ZXOzG1sIN_;)fF}~c$}kO3|fvfAOb5pW_`UM+1QFM8+W4yr{F-t2L zJ~G`m9yLMfN59j=*A=&aGici%*;hD&K~0E`6Fe>SRMB(2AaCGo*7zQBhjk@$a~AG? z2MUC8OUM0o7NdstXzP^WARehFisPzdH?(VtBSDdJjy<@O48!?|fk-8^Z4*yVQ-2L&UYI5dJLNjode&q5oM2JVC zmA`^3<?cucZ;k~>-Zi*1J>G2&!ggTSc(dV0pe|3H5J8g;NFo3 zXWi^+L>6f)N!0Fs@x@z%&SXC%2=L%x8darRtHSqTJ-ZB0wwkDQqZ+M1J?F$j?+>32 zpLf}}!|nN79#)3w-Uz)TMf}YD@f}e@T-r%B&id7lf-{$JxsRRSEwcmASx{3<%>3TQ zOEaMxl{mtne)R<8A8P{5Ls}@cen(8`+&0{BrVq3Bzzw@Emz>}raZ+l)0eQ3A==x{y z6RP4cis$W>=f*{}@VCZQyC9tl4IL70H?KFcqmA~l_l9M9fzrZ-hP#khtu*1(k+JZH zIg|d}kSmI}7G<~}UeDF_CuqDBaJe1FpvcDw58CsNz4sB&K6mT8a`8D{kw=7A=t@LN ziB@IvcIsYzHCpXtHVb~*|MqBbY`B-Xy(n_TJg}GUyFzi%4!xly!Ky=JRP+ZYx~d7<**!N561kHDg9{PxrW$KHg#|3 zVm~!uvC;6rEnRBiQ_y0*4JPx$l`@K2m_pa-SY3v{KCaV|9ahgWL-;~5th>x4o6d!O z?*s(g`R5kWF1$eVD!$aJ^=gjbOj->xt-ci`hzlGRe_-Juf(Urx_BT#ZiW3BFcjMiV z@*ok&UnMcL)G{nrRAld!uU`ugw)<*0uQtzo@~z<&VUnr@5*D}5;=eETu}h7n(H&uQ z<%Ky#V(!OLW~FC}CENCbnmFBfR(bEY3Bonv&=zJg`Jt=aLl%0AVr`0e%Rd%3iXWDh z0tk5FLuOTzd!(TF|NM0xG|ev!`OVq{cRL7S!z%TyLl6&e{oh`9hQ;n)$Sl|*AHLPP z;a@@Anb1UQw-uFetrmtGOjj8XMis)WUe~@~l78cesY5}XA7W9X3Pn7M+L8jpyqzZ> zd6VDoo zeUXbo6;FiMOYmD;9?;&T?0)}Z5W)Rrc4~=&qNy$A)k_?kbNNM{Kx#<))$d2j@X75VXuLLQAfH?ptdYrZJF1PjUxZu3BN{#B;7^50 zT;{a|ciQ`$u@%4>^Pkmav&-FIeY*7ytW?~u-#z{=SX$+@n)Di3y9&{?;t$f=;@%10k+G zA<(5*Y)l$yp&iKymHm^`%0VKyAZF6n+wFAGgjh1J1Fi_h5g6`2q_2DSe8BEk@s8&` zo;*#%x@+yAF|o44`%3c((<(@EuSkA!2o(qzu!4xd8TvQk^kjM_HOO7uqAg+ zHksb`)(|}$5)qLnp!R?G@P0q2EHlzOsfYYt`Nb5x6xttS-ut_UN1BCmV%k#g%Gf*D zi0O-Grfk7a$dg4#?g4AFId;vifV9ftN zsxy%yVv3k@FP1Ey4eWsy0an@1kN^0BEZDblp?k6UvYdqp&;5+``) zZ3(W5m0VD6C=VUKShi;8v31~f8?1wWM=hVpajjf`Cfk6A%lk(3o&|#qt)U!V!_=*N zfjmA-M8-#ceR@O*Rkf=KmTq$p5Yo&l6;mBn&!eWq0JR6^uX!?T?nuZ-e0$z9#+de% z!dck)4kOw$mq6V%$|~N`HX=pRP=0|^#?UTU$aaRMMaL@wN!;pGe&Z$TAczJoY{%^3 z2_}Xz84Ee`x9XIJc?N#MbhKd4v-X9^MWey(;v<-HaOuIiYhaG}N}uQmieRd7T-aLt z%I|fctOB(FFcP>8ty!QK=%B4D9eds!BucC#N+uJ$R$rn(zpH*25*?!jf4WuUyrv3z zhg6Vq5ARUI(|ep@b@7A{PSAw7?aaOZ#lp^8S>xB#?!Ge@nt)Qi2@#Jmc$~~+x?gQk zxza9Mz2V5OPpl#f-jex}c=_$+9GrIm@fT_v`6NIiaJn z_(t+I1?zQ6-5Vl)`~@+uThIZOh+wYB_@$nC_oBy^w~AJc;wPJULJ%rezKNs*v6zTqW^0K3Mb=Nz$eTxzWP=$L1z$@!g;5S4;W%N$S_wtf0GN z|Np2KgBqCSdOrb%3EEaxj~_o4@OBd*xF$pXrB7OCqG&X3(LJi8ke3VegUu2Ff?`6&u*#hKcanp@NRQ= zB-d69lKvtp$q~KM5d{~SH>?~Y*Pfcuoo7Xf^pF{Qr0U0)kzS*N)&#>3ZVEDd{B z1jUX$rL8nBFVeJM?mPkPWv$ebKRkPdRXs+FYB3d1MZOjjW-*QO=b?44I%tHa*l z71#(ln=y)5UYe)Akv!~sZ88KVtc$Lh(v&UGHA`Z9KB z-10k7M}*jUpm}}cN1mhB#x6Ns1K{8z)$qPPT-*<>O9En{C(~mngye4-rYFTx1NEqp zY+JD%8#K+s*L)=78lB$h{-AwR3|zK&;n=0tZ~gjYH#iBGlf)M<%<9K&M(-T2(<;WM z0xie4#f`@t$@{XDAMn~+4QC;c_i{X@Y6ruH3{Wg^Anq=HG{$zNKlmv*D$LAG6J{!7?EfawgghJvZb90A zYPI?L@c70v4p!C47Xxp~dVgi!Zs+)C^X#e+WX@b^-@N(>#hCLs zxSG{OYAfDnSP0Fc9D-rLgQUk8yGkB3>M{n4yOjruU#$Fc*iR$G%|>} zaH^(?hgMk*vwyJaPZ25o-4!hFQ@Gf$^h z`fU&Ju$^mlvp4=w9UoE;Nhdo{GnUfJIc!@}yIMB5=AWp`3 z1QtZ3K|ouwT4xJ1@{MgD36^h$4lo6AA{0x@_FuYA>(3BL(xyIDyFY# z++IJf6x8;5+@4A6A(8x+LyLn6{3bx~e-JQ`%6hAP?sQXo@gqzyPW;JFtuXhclKq;r zBDQbdyHnh$%v;{Cn2py<6wYk(dEV4sT+aGK2i$$DUx~xcUU`CsM);#WNQ2W@M{}ZD z`&5qo8BWP(x{81nwz|(342vBmbs9@`|7e}{lfoH5geN4~WtVXl_&Ih;(Dx-Pw*ItX zllO#&|Du-|Ip(Qg921)1}(Hg0x3GPuWF zx=itg90UVR!+C{}R-lkL!*A0vjLfLBYnSURTc{KK#pF~IB-x)6LpPy!Ka=6Bf!oqv zMNz76)cys5!H;pv`_GXskH^&w6;2)CrHowo1#kprFuoA;Ns zVd>7j4>4+q2{Zg!MtfapvTPZm?Io8e9n z8Iyy2&xLJ9@-ujB6PF#NoSy5g$&$gKDD8pXmMl0&b6GqwY-BcT>FHKchg ztk|eN;*kMLpay%o*fQQ?L-a5q4CfQ09~~I- z2YJ2u1YCZAuIZ$;Hw2>>gF6QPa`$tMVZYlpR_KR5FwdD|{do)l*MzgPy(%bI`LiqF_0Ub40KWxac*i5s1)EV{!J%QF@HlVbnbz#S-g^+!tsR2K zd2ip0z=aVKpJ(0*PZ0p+%&8|YDdX{_z>QPO>nm$Qy5}STGJa*nKsAXU4FJMUhZhuJ zB>AcV+5og+OV31mMp|nfq~GuaHgz}G+017iNmiJnsFrdh$zt3mrZ5Z-KmxQyuU@+B zKKJw##lJ)Ip`cDBHU_`bji9eEoJoRCO}dwZ^$FuueFbuP!XURF2M<5Jxp}T%CMJ;X zrZFkaLBnLEny~45fhh!-2uurV$KH`}y#s;)#f891BvjB6Qz1SgpmrBLcNaG^<5{Ue&ZglA?qL(ox;?UE5JuIm|dj;sn&187VEZ3 zm+H2%{o#}I_RjkR-O$pL*d+m(8?J#HWW;K2hLuyc+oAQ-wEjUxhqr(!epd>Djk ztfGX&20q0)>w-J+N77I8w;Dw!@2Hq9Crtph%uE7pafdg-?F|N^!7ZrY@0+l)_nM4o zxXi9jYJmMDFco$e`-*f^3^Pk~-l=PSl{0d8ZX&5x)7OYYLucxGs4P8hljz)2 z@t2&%#BF!;R8ypv{H1lUr7E%u>bpB@oEwcu(dgJi61kq#V!bMSu;5U}%?&IKkOUSy z4qs^amy_+pLCz$6{;8w~EAW<<=NdeiTN_>z2(o%O{C(sN*2m1!(sZugQMbzCMRjmU zqGMv`^RFD|05h$K1B)MJ_a$(Xm4KLG{c0+IB~F8dZg8k+2qLZv;(gilZjC#Jb*c;t zEgG+9i(*zxTfl(8)8kaN!W{ssBQ=2Hb$`{vBDLaD;MLnNDoQGau9q+46H2Ht`N<|d zQ(C7`{dtX7GEBm#l^0|Yd8J-X(N zww7r3dI>VPad1c9 zt;#yN@mO&%ALGn3VeSU6Ofp1HlqhKL`2BY6ab{_91L$40`o?mU`Mi$a`CRVzKt7c0 z-9-5NJCt*LHvs1LkJ0J~4qP-pMQbZ=dk-@ZKANRq zx-phB$|PN|`ZO^Nm@Lvkj?6VE2J=h}m3m=pkd|2Jwk196&=|`_m_WP;{-)dFC74+E zZYL3exnr?r%ggvdhk>Uns%ckSOm{LIav=Pbt`Ce?bz41(+>J@w5|)YdT{oh%Bu32r zjzf=+)s&TG+FCJ}#>?>VhKGe|L;iIn#YIJazUaPpYXAfBBqs73*$*RrujFK}!-z>F zt%NGm<>t$&44XF+$jbJ{#?90(pqBH=+8WE@XG?Gw>B0HHZ73!K26wYwD!18hr14uu z3P{i9*tbnCp2{M{H0&Goh7$ODnD^`?s4zS+ZXrUKWl{8AUqPQI_oRBYgKG!3EREQ= z;_)X}Kx|I1tFK%VRP!zu9RZV+@sosajN4Y(8XEsR>#?5h8*<$Iokg4}69Lg4Bqb*! zRxp1G4W*TKBW1J^jkA-e1VgHnrXu#GA7?J8zQqnOeR<}iNq~?il(gTP(y#L*eMMtZ zLFN}9A1`xbE1mMTo4P>>sAdm7l1S#01uz5kDDDSp>!S8sy1<$3jio~z;7r0}Z}A-o zSq-?wexG63H+~7n5Wk`Ra8x*OVKWzUmtN?stjeSd|7g0NEWa_*aXwoZQCwF$G&nfx zP>~SOno>%A<7fzGvUO?L(s{8rzV~m8Taig1_Nz>?q7nN%^!YPxZenwDb51URt4pG- zUV+=7_Ku^uV@Oz-4EdMkm_O{f-sHMGkNBQ1cpxJ<4YVy*?tSCrI*j1^A{s2?+NQM* zE`{6nOz6?kg5tY0&hc??FtaKod68BISys^8O&mooml{H2{G_keZislF&?k#HJ}mT1 z$^lEmZ6zN5OrBlq{bs@rfeZr@r^y>=rH$- zJvFmF;RO%8!#Z2M#n}!YQ2pMIk2eJ^tJ5z6>q{h)uv@ZjH3vnyi61uBH-1%*43US$D)#YQhFd z=ZP_%Gy&-`$8sjyB`ZvTLt zlZ#76Uq5lfSp%-4W;r@2%20?d=?tZ?bl5SgfMxHTEQv$fL1A~?G2>HB7Rky^-N{V( z%fg$;YUY?v2z+F1p(^X!ylYe7vK5g6t!f|=7dQz_cG2s(0VH$VhmWsBID*%&57QR$q@{^SpTXV?Ysr$nBz~vicr24&c^}A69 z5Ux)5MH7oSuRa+{f&R!!mHKZj01-sQ>8Si%V{t;=-g+T^rWCkp#WSxy6jBBi2GLqF zLUp1lF$FnUAY34!krUh0_A$!!99W4r1*03=6n9XD-kYI*_5-fn!Zg3tjgZyl6Rb}yu+KmJl8|A2BQG_s zE10CGe9)vc!IaZt?H44ucP0F#&@S_=gL@Ib6anNxyK`Yt1;lh_nhc=|SqYQ|3^ z8S{&l_E&Njc<4o```d^*h=4N~HoA1DN;Jj9{U#zH@e6cb8*a|n{?d85mn!zrMV9>|$VldVy4PP(@WGhs2U}1P6#XvO0ybH#| z%Q&Z(f0#V~{0P;DewnScr5_#IetA4si6=hxcYkNag0HW&rj8mLL%y4-76n&_2#Hk0 z+gtP!BWRLmVcc%+5>4&*qiBejZ%X0+7j~Ed#+;Lj+716LP4fC9+8!#t2#Ns9wS1Tl z#4Tk-Np@D64`kjpm6;q*_*au?T`zuOEm;3y()w=ZA(`b+vX;J@<>NKmIIz08;qEY$ zDe*rQ{`a`Ru-x+p5#amJoab7Kh{Gaer}=OwziSGlN<(nX0m$ERuWoeN2zTZP!-1@+ zQe`Q}5A|-#DiRY--f0yuj9GKGi1$})cmDo zmz}yP_;Fh~-rT{8%y^APjWD@I7`V2D&h?f$8=daL5rQ}(?bo3r*fv6NM99bc5M9TfpREYa{^!bv!w5MlHQwgkd*3YY%s5$-yd1<=*m+#`>#phj z-F0{!^R6XdI7$tW726O%nomFCBZKUzFPNWk?mp9~BWkwG`yuO+xL;Y+S|=xFUp2SD z%=XH%w+1%4g97GfT$OsV8&jz_CbAs5+3vH^pO&$h4;5?sq`eB8}=VXsxoM3X*+uSh%y)bMs_zkkR5R3v|`s9~)pmX~5Rm;7?{WGi# zkAJ;ZIR0Lbm8_`8cHm#0!762>aUqL6nA;FY-PM`fIMQQ#5`G`j+*ksIq%W_l+jt)1 zKZVcU^2a<9^|}Xf$UP(4La#r6>h^fZSo0WS}TZqdB2Lc%Mo%fUXjxefMh5`{|l){JS-~ zpd_@6)t!bDj)TK8S^?H=O z7~~4{jGeqK9zyr8H|;3(yy)*JV~yexAf3sS>DyCs0yHdj#FM|WvJwKJ7qa1{ z3}`*sw01h%TY`Mp+OjFW+*G<+nKUZ10 zaho6H19)nH1SMPyKf$)F3_K+d@!PRjUr1wxV`cqXFO1crKcQfU$NIGVwT4ak=TpQ`TTWa2iWligE5+;&qy zuN;6e6?@4F%!!TXsvd%gd$20B5HZRtUCY$RxW8##7U(0`IT(a18e6mFwq7K2FrpKj zJ!vW+{pVEjb#M#%)N~>w=GmU>E*9gl+vO@)YW<+J?K)-y48s}Q@vCs&>>UT7){A?- z6Xbw}AMNeRai$;>X(WB>0k~at0QxYkhajJ`hye~0f?wrUC$i3I(C2)Qf5ev9)UW^8 zLHs20dEL3A_}!#u`(C2xooS^WUhuC|{|{8n)vVevs6I>WFnz9YME9gg5L>~%ugyVMY{Q1h}){D%@t~};87~7`V58R6!M=( zU*AZAZpi+ThT6aqz3^Lai(J@^D~cn}A8l{0{JzD-y*--DGH-I*eyOidr^VP#y%`r5 zhZ_@nAfSbb3?i%C<`N4>ra+N{Gc|&euuWjIsG>|m=gRfh7DQWpz%DQ_5K_!+x}PB( zGxbQ0j@6M9){1f4;u5n#5j%hh%2FWRms#RbIAm|d*rok0iDBqbAuzrbz@3YtxteJ> zDB{{r>wzu?1xH?>ikPaD{12~&k$BN5Ez?(`TF?*viI~3IVy%UyvH>XOS(H5?K)iHY zbzL14y*!iG0D4^@^$~b3@;OLgua5Df67S`rvgnBh{#=!2qt?TPCVihMqLrWVMlNPH zjYpQ4pkrLTB6sOslBs0M(Dqpp8WE}Do{M$-cNI8z1cX}7!eISmFG_z{VlsaeW88ci zZyC%|IX}`(yrw}BKgUyMEdjtkJL-1`|7KpbSc{kZ8ap%e#Sv|F#j@?8mz9CVjxu5Ts`>^eRd z4!2>;e%4Nc0leuQ;!q+YBI{%@M$`m{5ZMf_eMfk?|d?Ls@&uwtXxy>x^~g`tt&>@PyqKP#|I6> z#R5DBh`Y_8*0tI)I|a-2+!gwrdwoB@;JIt)cpi?BaV50YGAtV@f#DGlPc){+Cesu} zV))!1Dm2p1+=V8iOhF{g)pnBYR$Eqs;git@1-+_DSt~26k8u7LygAZliq{GyyD4-B zzD?F(649&1Zd+eG{>z`)Tj*|j$cF{r3*gPzw?~}KYfOuqMT`aJ9MJBwi#94#O|9*M zy19VS**YXbOQO+rMxfbY;HmEZYEtiqvZ!(knwkmSs>e#dVg34UPF5I81o}2)@n_qh zgAL}cfl&sN0T3eGV*UC&+Dp*pjU18jx|9&s|QCtx1AL-h7^xkl?;PL7pknk}DoMZ(8LmY+Kai41Ng{}@JXduPheph~-H+@~_ z_B7RdNAzfCya&+RmGs@4a~_@)a}AjcfZNQ^SXS6=SAkqe)OV}&4i_r{%56PozxiFM z8xAYUlZu{1%86V)uYIs&$vc0c@j5lzRf0>j0&BNxsGz0qS?YU8K0(yw^!YBVqLoc4Ho#ilk8;@#&m%)YXLrQ(zcA9KoRtZ zQ;QzG@nLjf;kg9REzX%Wjbj^Bis9?du>vzQmWDH~sVoNWyUdfs9#uV~6)-$#P5!>} zc6{)Vthi8Yjpm{UUH5TalpT`w_EFu{sjw$}c;_}+l6GU;o|Oo z9P$hjPPYW5UU5dj(LBlmwD^U^=6UMu@=DO|d{f22WALQjao&gv(ZfEbM*MNm8FZUY zYSTGU*`_@iZdbI=qu^Rw48)SE+n7RBOR3Iey(!9QDG$VUeRUZp1gr6MwVpO%Y`Rsh zrb?KyR9X4{&hR?Z8^THI{=u0*giM|Dnv`n}26YPY!_^H3o@+;__gvd?gC`|05X1l5 z)O|r`S6#Q6oLs}K9{blV1#?&r|KF3c|Ib0$zuC0w#Arn*#ly$va62v6t;Gpl*DW$Q z0^L(G9H2nWNedp3aC5LK7CQ++*%O0jSN?6(=+z|q>Ow|Sg1qiR)2Mpv0<4ra2LHR= zZOM<*f^Nb`At+;5ygCUkE%4f+Ba6rktYe@OZM^nudg=u$RXi%F}I76L8M2=SDuEl&^3pR-|VG;hqJ}s zOdUAcOQS zCOA+qGO)5@s?t^Y|M^Eo?`rqm1v>kbQq#PRI<-1iMwe^8i2vWS6x_d0n|w;ZLmQD2 ze=cSf>X@GD)=PnBW!`pl-h8{e&|c*l7h zY9OYldGDMLzN4SL?uap^2NjT9CH8-7p7ARDZ$S`Xb9iyV|9?jX2Uq(y$$3v!s&`Q* zujiif)YVk?F^QUzlTHGEoJ6I@kS?pnm!`@!kh$C)*C#1@DjI!ELW&8Md!D zXN@%|hAVRo_bqiB^0wxWDAk$1A^$Jv9Ppe$cA>CqAdu17-f7@lMqo!t?tVKV0mQgI zxex{hd`!OxC~^2y$Pb<_NyE7=^@z?dmH!OJ6AS(Y`_BmyP8-Pq4cmi_=jFB~0{ za@Q+L>5Xg~Z-7Jeclz;^z(}#a?Hkx6lVi;ApfAK>?E>x&2uXs(rg?2X0`BI)+e(jl zB_k~`TD)#Ro7X-$L@Mid$+wAP_;~@;&A%woy}rl$_|JnGab7UZDSJ#Y_5-mu9ad=$ zR!_+rN+=Z>5{r$NDEtB9-4)N*08aX_O)n!BKhIzW*a}s#m*u17G-~VdBsI8wv^|eO zkY$>;&?etJY|YPeJVN+SAz4>VLYk_}mYN;0ncXB>?<47cefS4qJSq8mu3K>_c(hn6w zvv^Z%sst<0p{R^9Z(IP^();hZ*&cF}yi1}fb8bZ>;^85fliqHJOOcXq0 z5uHZ=%#8E4{c#ImYbOk8U(?_|iz1t{HdV+^5WTq|zjiF#{jS;mr*C^7$kG+eu*!D3 zsmFWF+OH%a*gcMi8dus6d!8FzH)(?TX8iC&^7B1DwvHi+H{Q4=H< z(R-9ftR5u<(XA-a7ZF4a5fLq6)G?!sF&LdO>dfzr{q6f>=H2pn_ndofIp^H(xuC!7 z>jk@1aJ-NM@Rm3aPkPYPUJ`f>FI#S7i*Uu%w0`tlJ!&96$5(+d*L>3ud*NKY=Hvp-+e_QF7SMmeX~ zw~JPXN6a9^XPcODo5oUJL+@g{VPPl`Y{A z)zbp;UV)@RuLmoKs6vXpIgPI_s+qiPqk^iVu~#74S>w=Z+558%qka*oe#cAx&KnRH{& zxCoiFqlx3m^n!^D$%ftB8v@u(k{P@6ZxT~OEn5?Tb%x#Vz|sNWu<)CNi`&G90iIBO zj(Wp+#9)Y*RkuCyWMBSAaRlT&e! zfZi|sbF#iY@L(e07{x8+q|W2(>-T9bqss1A;8ywLTi!086DNA0S~&dXY^PQ^R+l<7 z>@C8O^>NBVC4#Mj-%7Q08}sJ4WOYC)(To%zFLIL0wSGLvF6NAKUFe8DE7@3BtW{`! zD2Rk?+7No2s;XGm+5Fc4(ZG2EjV*97(}u?~GBoZ!F18q`!xI=jDsjWvWNB_R>gW|a z=`FYh&8gUYL~*bYXQst4tY#6PuMh^gMVLaOORIpWpo#8rMVZIkq2I7LyblKGyZr0J z%2kY-6+-+ynH#h{0knYuC84P$R4@E|{r*a4rpgc~ zfnU7DZo5`L>AVjEQ8&2X@-+OI%N@RGBYocs@-YOD`Ey4C5a@#J_P148pXvtNY;|xt zDzRO^jG*+5dt^u-8Lutlbfseg$p<#nn8Qiw?mza#u}(M}%C0vyHM8JupHW8iASsTD z;z5kkVgJ8jmhnGgYOXrLZ-4{VUW~_|*rfZvXf#l}ytxfQ(-9R%H@5%uN7hE)E5UBo zxnhPQ1KdOpFqGjxz3Q&>B;D>;_1HgoBPzx_mMOA|548M^@M(a z$mHeIiyPfXJ-ox}3$m1!ri=HsxKsu#A12;1($4}Z_qMACD>`PTr5UCYfvWM2P(nwx z7|Eg*^L-^w!Tw$@f$P+r2{H0aj5#-ZyrMN$XoM=%p6srXmal=-X|UWA5Ip3lAJvno zKN_q)0D0l}%`p2&>P<8r-3Raf8w{5MTlnDy#@Sw0e8;M8T+la0 z2$8VdfV$Lmclz4^#DZ!N!6^~!AGJB#Btq1USJ7y{Y#kv|KJw6`&Gl>#AyQu8mhp`{ zw#6uk5Mnbcbe?qRd4>oM|E;Dvq*OHMoCIZ6@sVs73=*3P#=Ha7_@BmJS}APoza{(w zCjFAMFCF6;S)MxJ;x_)$1ZA!ux88ff6ax{#B;7iYSwu0Lqz=*go|3h z;0xJ+U0}|H`ahYB8VWLA@Y7mYaLsotsGin)n>|2h?cRr?z8pQ7_KE2wX7Z2crJEJM z165j0c1v%V;ZxHjB8ASpa)0@GQmd*bn@p=<6zbG$FS)EhMdTw$yvqCg8=aqQ+)ng7BrPsafIjqNK{HKGK=Fzc^sIqzYE@4I@zwjT)Y7)$ zRP)%E6ult(C&2aZcK4@Li`H8VaL{=UrqM96Gq7`k6`?|^9)~&cet4%wvdA*0jPJWQ z(ycT#XxZPxusf3%QyxmTgwyrU_!rO7Y7yP_3Z;aIg`e-KVxrNWN3u6)+6_B8@JqQ7F#nwF z>^N@4An5x(Fit0pid*67NE~k~5a>zE9yDSV@~O0RYM#>wB0736PZ{}8T+*~PAz)899{k$Md1+kOM0(F7bLC3g@Ez{YoIn^!u)$B zKRNv5FikB4BE9Q_h&54AIEq*H`=>2+MFJNU!^0+DJimI<1JD|9%ABZZ_1ZmF9`7-mIv0R%j*jS(4j=);I+TM4{}^!(CzWX z-|dP@5T5z%bchthNd7J6kijw0lPEm^cj} zn=Rm+&=LgPGkG4w)dR2&?pDAH>~`tbbcG+^34BycUFr^(zB=cV@WO^!c2wK3$SPW; zm40aMT9)*a#(<{ZaZ^^O|0Iw=!Ed?-&X!ZIjB&&&&eC3^%n$hGbIbkOu>O1b za5f44(Vp`*+-Q#C!dSQ@|NNOE`swQY!UY`glSP@ej69NWYs<|$ej@%jDC6JAHFk5UwCdAyHx&MG>lsxr1XAWIMM4KrW9cAi4aMCxs0i(>EpUZSPs?rj zw#}6RL2b5M;o;#EV5W4zHZ~zR;hg(BqLqo$q9;ts#@iOe{zdGIpQ4G$_R%>z= zc@~&6O1 zohj-shTUxw(%q2V>DuWFOqFx;vnuG`gz~NG-y3A4g*r%Kq29@SLIRzMWbJ`+#?^rt zvdAnxknr43EwAXAHQ(y$>4kR{a7s1u6kx~Tr(b~8zuPrW3v=SOv)XJNaDa=l0tUA= zpJrlhy}_(`Z@t=%-!)Va`bv#YyzM3~B!qFumw&u3j@Pd3VMKQkCGVPrfyQ)p##2c) zI+m9|D+IJs(iV2m3XEOS@|;G?a^_6=1K+$veX)OtDyec=73QC(Qv(v44Y=x&GwE`kcd6Di&8`L_Fa z&?C{g{2rl#*QjYk?8D{9&M(UII}f~G+M7u~>_Q;y;jviE^I7RCkF=TIEsV6JV?~tv zmY@O`DB$?`HT=a{<~R-;HhWMu>G+&vny(C%E!K4_15EhZ3IrGGIZJU=E{`Zw&6wz~ z$H-`CRD0gB22AYlIZ5T5BT3v-JeS5013|XzO-)T2ho2O*H!_BlKO`Owi~*;&&wO+S z5BJ#;ladnRTVY&!x}!he9(z=?&iu-lEWk?%8ZkYg^*sVR9XBN65Wfld+2@}B&`&N> zUA`?VqfKR8CMWi;uFpo*>D(;zTxhQ*)PQCF{N5}Y0Cf8$(B*&Yq5X%%i);ju=Uzc5 z&#a;%BRv?~Sct(RW&u+#JnP-qL^;eFa%zFeB&>)qL(U9gqPV^YDV86njT}Ipd|&tH z34fp2suPiMs)vBMy ztzl0KSIb|l;?8vZF`|ncwlx~^=4~E(*kR+$Tffb#H|yp*gALo^JZ7PE7M`K2ufAGp zCqozg$48?@SYaL3`+1^=Fe+D9*RlDTIbbW039it8+i!lspqu%2?5JKr@4m`%nbcbU z2z#So1P1ngcX^dY{-J4sZ8$@sIn}6`eTJ{w`|}?)8_mI+F7`-MvhS+eDFOAUH(Ca| z!rcjlcjNf4xZ;_-Y17T0-??ZT$61R%zM)S^Z97Jo_ry8QkDChbSy?k0mY$zW*a9?U z({t+`_JrZ-kQ@RDMB`!BHE#%{cFv|VZqQ^ay#|l%8^?N~hu3t6hQ4&z?>MmDxS{en z02Zcei-GPKHrTZXn&|0KuO}hO+H2`vtyP&^r5>9W0Lk8DF0kgID0>78O-QMUg0kZof1~)8GOhPB+(~w@b1f zQw~~mvbfXq_xI0R#73VZE-ZwTT$~Jq@++-}f(?FFY9^~JHW!5?>lsuk;dQmKC%mcp zkC@%P71qzi>d6VCgXa<^UUZ@|1e>i~Js8K(IXyUT(nNFhBM({yqd5T6X82Haibs9)Ryqrn4Zi0$<@3DG^ zB*EqhKQBZ6boV!aqpRr2-kjSgfytn@ZCdw&$ACsVl1!~vl0C&q)n;tvL8@)s{NC=A z3SxPs7LdeO`q;_PfB605$lTJstDu3)_b7SxCBnqq{IKQq>(_lCq-yw2X&zZNn&FqS zys~*CicIjSN#d<`O>=YBfr~vPFJ$v(`;%B_L6nu1lM^5i5#+t7-Lp4PHUA#J(|_t$ z`D%C0fei?t6UVWx0!yjij%c6hryoNg+AKBTy8h2KSGanOA5N*#>*(=LLc7;X_-DqV zv7obNC8M*wHrBN@@bf8XeD!QW3X77+}YkHR5nx5*B1(IQt+2JWl+&kf>oAdPaJ~ZgHuMWQH_)f0&$Mw)Bv+1 zp|4MPK`P1aM3I8Y|3A5Zkw3`(b&r%wL2J=Sj`yj0DogC%mH$e$4MCCrmw-eHU+}Iq V7KyDkS~wCjbuK;CQ{XaaKM9lyI diff --git a/icons/obj/trash.dmi b/icons/obj/trash.dmi index 219d93400a33b56a7f4bd4cfe55bd2ac6f656910..1b3c99e893837414eb4233561c297337e0a77c9a 100644 GIT binary patch literal 14718 zcmZ|01CS(N@Gjb;ogUk^ZQI-(d&joz9osf`Y}?qe&E2u>+rR(45ij1m@j9ZayQ90# z$?rRvd9pIIB9s-S5MXg(0RRAkjI{U<(0d=~$OnD{owccr^#A}c881~$7jaW(V<$@o z7fX9P0Kg+VCaKpBf&@P7sIyFXJX8Ip)upXOR@GEm9}H(2OZSp_xVWs#H%wJ64agZU z*pnA}QQ{@!m(6(UAlST<9>QI&cww+&%chc-bGm4^!HIZsdV4^M!&;%p@EGU{jtbjg zk(HZRu4ub%Ce6He@II;y{OFeFi8R$XwBQMa#VbU%8tpfx^$z`umc*1s^E8{(vRhA| zV~9Nh%NQG9pN-$=W$QsWDVhksj1m?5(^o4dsf?GMirW8&BJp&etDb^g#keg;J6$4~ z?^Zcc`dcQU45jt1cCLV8e*?`5OyU(KN%Dd~61MbA+lXW8n3k(m<9bi^XLmMo17zLj zUrJ5HOk!CAON4#pu*@On{78v-z_Nydrc%8XT2+ySFuz%h${*7k1qX4IkBuwy_a6jI z(5~Eh>qNV^kpy`h4eSxtjTF>xAYi%4Z{6J{}~?=$u1 zITbQ}{QR?X*A-vu6@uVPSzJA#50iLN4D#fqP-% z(g2d|IUo#i2pcX5Scrop8F>Kmv_%NyE`-wt{C?Q97_h(Jk}Tl;{XIXSsmanv8nTQ= z5e^I;8=jPkD(vBG1v<1?N=03UuMm#>$@ek{`v=EY6NXfcn@H``KfiZz%isw2qqn1c z&^5|G(FO>@o|{Qm~G%y%zSBt$oL>qAVI2-oQbQgw}&U$`53n5y!+8ft)3e3-){9? z4M9cE|HKpBX|I8nr$qC=Yvkrf!DQ5>{_oiKxl@QMaqmEbDQ03mgqz!9QeJt2BFx>| zIxv6Nf;CxnE@Y;(|0SZ^Igxbi$#&@6HS@qho~Zb@UKq;rTLBJRb}|+sn3IgKK4EBR zD1e-bip_etDj@zliIGcwNP=(aKF>A!)A9?RbEfm{epok{o6GkDi8-uiJ#Y&wdgO_j9qW6nLCR7# z>7v5Zn!NyB@MFHg{A>mtaCIupHiv?->1j9HxR|#IiO-i`N;I^zqNuJ&xe&As0+`do*v<`FNZ^aA9b#X=v({I``z~)3@Voe1uj=_-@hIPaz?HO ztOa^?!qiW8>;s0X_?#_Czl!L-tIHcOo^YYxmQhGtPwD9y#s>+<6ZK`i13H;jr|jGY zp&VRq?NS*pcvCg%I(sQiS2Jg=3c>I|tKbqUG{IWWrZteyZ3A5aVcdw<*5$1-4+d_<<6M|M=_pV=JW$l$OT(R(8M%)u-WZiAJ(y5IRp!B)lj z0G3(_j8Z7@)Wt%#YB-=ZgK%hD{s$ZU%~F-UiCfxp4_O182phhzmy~*pE*{?VTR)Gm z)6ukI&tHlIkw4MB+^S-TUn)cPCH0`ksA3p1itTr&I#eMLwvHF@S5HVIJMMb26laZ* zM#S6jAQ+NJZa670Z_muuG6n!wv|#xkWNTfrMp9Ew$_R zH$__{2@~TOr3E*y<1)b*7Yf~VZV*TlA@1Qad-?%Bg(>j|Q^L2W^eSbSlz7A1fRho0 zS`!QM$spbwxznIi0{^8VS`W%pp0n5)M1=N^8u69?U0z8sg~V*b7qY2{UF6K*!W#tk z<3Q{gg!4yG%0Wrows+11CC?{x`X`d-%i}-rN}|ve4EDQe*59EPT<|Bd!h7 zDNFY*U*z?+sNgql4U_`dOd559OcAY1(RBoO02bwZ;0&y3;WR!ooDE zJ_n>feo@3iLI&vQ=)fmM#`r;e_gbXuwU!_Ga`1qiOF{8hS5Ls^_KX>;`ymOM0ZA|F zBlhD&ujwQ)Q^3Oekd^6WL<;UFhMIpnqL{qt7JUu6VLeH?Fr73BgoN1G@lE04>=`&cT50ea6w-RI z0jtbqAik;qw_30Un`Me6cE8kNS4%Pay1hBL^d5~R@Z$rIV?GuapP_~Iz&;G}rU7h% z#I4!cdmwsq9T$9nV8_11AXLch>u7$9mE-bOs(6*$bz3oa|Ld&fsfvMCveum8nzq7^)Q7HzZRhBKIu!T^>KxKhZwv$Cn%Id7Hn5mR~J7Vg#{hzatZEmv9X~B zE>0Kg-ZGLcWbO3w=j)4$Y(?LnWhot|5*hD=$pF`c;8eq zy}ERRXr>-ASfSw_r;ZXv5&iDQiS)r;x>FDrq}6C91KJeR?Yc3Zcmu7|gR=$@JfUjR zclh8>l_c7TYlSE1;>8Fk-oZS5Pv&c`sgMqP0-ax%VOeH@LSIjQ0#OH|`OOl{op)tb zV#-~;eERRFaQJ9chOFiZ)5InkBH!_%BkH=9ZOzdQw7EG!jC?X^fo~)9o7VzAMCpRPmVpU9+`2#l*YyRn zD^Sm<53JtzR@Wz~zlDvc*3!CO!m46JedZ1L@uJu2mN)q}!#U7FuS9}PK@2ERveyK0 z3S2}!>iN&@+_4_Dx2(7z2BFFlA0K7uN>`|gHfjoltn#j-T%#m7 zb_ZAFq@K#!3gzl1fP?G`E9o5EIl6MDi=Y3UvWx@Uj;4o0?arIDgSTz`rR2V!M}K^h z1LvRjMe`x42_(74DtqVaCkdG)3V}o(z=??mh;kR9pb7)c*+s#Dd(o2r@8EBi>U^W? zy_n$m2nqCazj;@ORUr4#sg%#9qX5Pb>M0E3Uh8){6i67w;^oLw#g923IkOkDNuX=S|-@)v@Zd4pmpfw#+!~vMnD1cAK zfg|){^n5!zf9{;a*mUnouQ5fHz)uiFP=vj_IsnvkbbJiq`N+K`B_&EHO6DX0)$S!o zF2t&-`$g=3g8t!0M}FrdA)t9BgxtCR8-`x&Jc4NvCXcoswxGcKM<)?9HjfiI;P2nR zgeQs|A|7ZvMhV?I-fAofG#NE6OG``SRPG8`)k{`jvli^ayCJjcEu%-Pyu7}m%DE5g z6QTPx_y}Km+AYqErEAVW{Ki*^dk^v_tC!!=SRIzVV9t7?vy;LOGupmZ|FNbPtYDV&t4bhj3W$)Js%j2W6jr;&TTXTgs9c$sn}`g^@GEExukKfF2_vc%gxiIieu zly`imc&;!W%@A9qK>w=%tKQNd;5^b?GitHpNdtDfp)@Sfce3Sp(~?pF58x3_~2ECy|I z7hZzF#16vigmp@zbB^NZvEAJ{FL61H%y4GyL1+kK?TUEz+g{Vfct{OgnWP|#--Z2{ zduT6DS35J$HwQREe*9``YUBovP_r19O&S;r)D(&E(Y^2L6_u3&q6No_w^9-k?c#@U z>l2T_;f2q8tf%%wd+kZWDDy#RF7|2RDYBwSgU)_!; zqV0;0ds1#S$GST&#VtxJ*IIx}@+V34)Qx1li7ti-)nz|Wgr9clotbmAi8K~cYweoo zy{)vm#~+6DYZKD;K~-&~A-MkV*Tun>f`TsJ1w&>lm&mj)IwqzOXO=HzFE|LbR<$}v zJHhPDXWK8BZbT5j_pHCB0(ky~C5W&1PMcO>mGfSs+|=WyX)x_P;dryQBT1f$e&w98&OfylQSMBjC9x0TY2JO+CuPoyPB767%Belea1$4L|yQ4baT)=$@XPBEQ~D_6f0D83!*KEE2veznG|EeM+HEnP4M>RN)7 zckiGa_f{n~l|n=@Xy?#9tQEPiu&_hHyjlB$vWJURa=78_i?i*5hK%fu)M!bn9^&tt zAel&o;pUOMGDmspGdIH5q|dJ=+g?h)AxPOs!J?sy^Tx)8=jqk2HEWDSrB3cpJ!r#) zGBx>5?h-l%t`5At zxHlh#@84@FB$ciyd%Zmxi*Uk!MfZQ1ZM8ostLejLwe*E}X`Cp#UE0p#2LHH#hkV&8 z0QOrU*g-Mz`Ua^wImC@&V?-r0V}3V?OlD5K(k*`cWX^p@v3+=2afGKEtq?k}VKRTn znOm)ey$1PIBN1E3JhCXjdCiZXAWH)C_!q3MZ4YnveCK)t#_319WBW$$Q3T!zgmraXMo5jCMKqYZkMcp2U2|r z4^n{3>XCBu(M?i(yDH%_a&Zc+Thd*zzomPAS0-;BMO4|wm%CtTZ$8RE!X3v=`sL_P zhP6%deb#6H>>hf>z!;F3>brw5 z9ShNjr+_pbF{$(S*VsFY0{D%UPA3t_CY5u&aG2}KSGLDu>lIp`Acj8Aew8W>zkQjz zBM?7&d>FZDV^^KL&Lrn+_alXpbz%-UNZeDp9_fc zE7?B3Ihb8LfhdZ26p1O+|=G>Cr*0tgtmLVJ*qMS;E&$2q(I zlVbb-56O(rss0fR2P-4-268~jig&HN&W&ZR6%cIdAzQ) zJUl!gkJ#XPww(WkwrLx7juic&R>>7U)K9axr0R(*^v;p-jA5(1jVTOPrPV0u$K-lz z0?6cIB(oa|4IkHdpgHJty8!>W-Q@}9O--j>g)EoG__w-s+h`~pMO9T*SyvYxatDH@ z1r84GcX>H*jR^2oscw&)aij=vKSx+e_hAbe&_YeOGGq zz_9ukf2-(yLAuW*@r@7z+|I8y29Kj`?NLL{p_e}^mhgt&z0G9*8;?h*BV?r1O!8v~ zqF8cbG_KjbL|~IL4X{H0Yf0{nGUxzuSJBTu;tD|m7>M2Uj7be(5rQZ!47#(qgn4_&2B69QkAJi zj)Ub*A>Q#j0$UX9uHMyERrH)TtH{hq7(_(xG|wHuKcHU<&PPW_oeyH1=yW9{pj65f z1!`O=v6XGwHZ*7l0{;yDw~BxzwNdK#9e=Rr{mEKD# zLHo^ZXTcGrmQ1+Q*xNk);fPB&o7KFeySH6_zUoi_*xOO(#`K>*#r5@$eHWb?pRIOV zr=&*4#>TUE1s;C(Zy;r7ltM1&r*;hhA$9U|fq8qnGM|4z(;LlVU>F)5zxu-TZycpa z?->vSke%|=b%Q{n7UGkO^MD|#Si+b$HAWJ|+`dQcEK1%eRO8Q|b61(xvaP$;IORGK z1X$=a3wfTS$ktzFO4tDkJbH-+{EUr@!af40rIa31_zw>c?{y$y3!FhS*J~prP3K8B zO61n))1aW6}~0vXRTAO)O%G% zdR0#3@#i2%QvK*sG&CduSsXzfvhc~hW2+EyNq~_~{fV8BpkVI6z(7EJE!W02XQz$^ z?+AEG98=GGq?sIC=+_(5e@8^H%4)B_5Qqf#6!6c&6=Z3WyOApwo2t}<=R4XKM;L_~ z<4E_~rjWaX^g;Ng^>GEbZTCWS`5fLQWc?5uI5r3}RZANieCD^i zs|*^NZNIP24{}6B5=RGE5YVx77GrESGkDNkNb*3FW^KJZfKwRPTrZ&`&tMV(;V2!$ zUUrsAiJ)X|koSRm$3ZMalLWbOy(TzoYpJLQ1tO7jTU2#@{amvE2x9AO%A3X`NT;B? z*j=ukZz+3QLFtRr#os1oX5Yxse`p8)vh^OofE~8tAWZq`zlYk_<#|_}i0WBbNuyHw zvsoL*tI0YyO;)Z=if&f9I>$MwiqWtwj32bzNc%d~>ZS4-;A1Lb(1k?8H{1|wum}1# z>deZITeh9v8<#*WO-*d%+x87td$WtF9&f@!%K6Wu1M?Cl6+H?izAYO|LlE?u*MNC> z+<4vqZyILP33PehoUm4P>FW37^quaK(X8joL!{&<_ptpyTG}pic|vTDG~qx}efw+1 zz)ch)BBI3~-+zC(m>Xyzxe$J`J#wB}Rn*PI^K~W9mUWzBgG@y?_~0ESP)cg`KV%%% z%i%C+l=(|mdP8cwBVIw{!3%nO2~L7zhdYhtO2VTMH09;x`8_>?vuPJezQbsU;(}cV z4(@NTK`C({H6gt4M(eGwXCZ!>wfDpcFtYm}H2!aJ(Ku}X+K`V^@%)#~?Oge=?FN4# zh`!)P-j2^)BHLD)Iouujyagt-p)S%$g$?>;<$ zf^jt{TlV6&Rjeof9zL9)6fFCV%cl$59pCQWm*dOa?yDso_0+n(1A zgLqq)$b1l5R}MAb8hCd;uH!!$Y$XVIoWRPZi4YjHSiTwtn*PLuz))-}QUvK0T#Ij+ zwgFR(q}}E-grJZYT+$CpC}gy@ww8*7Brq5nDKS3&I(Utc!%DT5M3Q(AX_#@hVJj)- za-iT-l;q3PTYn^o{}zq-o6;>+S#e@^;wi4g>DhyKHogW))e{^`!vi+A%W>P*76~>< z9QfZnwpk+wDu4HF#?_Xs@ueIoL`lL;iJdIpCw|C%|04JZL8lin&?eeGP*AtC1vQ!L zlwcsTznd%=u^X~b1br4$^C^rIk&&3V@7322@4vZsiDLLO%dp$_$wX*YvHwGR`_Zf8 zOZcdurc`!%lGu~4X3e?Ro!4OQ0MF2Sr3!s;#*O)y3MtP8T$y?HYJm1}Q^>Cxd0sEP ze@w}}rL(b?So!66{4(MknwJPRIo@JlNdMpL7800Vv4(6^Pl#}L58CGSjq$z-W*-um zK_+*w7Rr^}tMI?UozktJyp&I7O8(wKN>N%QqQHKG5XuqQ|0_}S|5OQ)e=cJ3&)Yg1 zD!nPW{_%dWV=@2GW%0f^SGoNZoyr&KOS2awp6)&Qz0mPxBKc`A9!>d6(-%LM6B;oK zf_=Bj`FgWzX?`>9U&PUsrt`cIL|zX%ktlGqpQcWep-E#6Mk8$Dvh-?6uux&pX>3H3HF?oOxFfNwTQ5w9c=wP;7+wym# zb8$78f(_buurYS6f@v=gepw^I1~Hy%%Q_M7qyQ;-09XLmORvuz7#Q-Hm#Cj#k7k#L zWO0hPc3z1^8r9Q5ax6I~Gf0_0J723*i+XOyRh?D$)u0KS;X0Jx_*?GjN?)Hs z@sR(zmy-RK23GP2Me^o@iq-G-yO~~nY7)@wdrB<)H6 zz_NXNLlz@Z7OMYm;y8a&r8qlFtHTvGyS=%;ap6MztjsLEh9XC*hdHEUot#X&oS3#= zn&qmf8HyZ5lC5)$t`3*ajuvWj+&Mu&1xU5w(b>}`?rg<@eKq(qZdp|iXhdti#=IOV+p$Th006AR|9SzWLr^er zLTeAdF1qlBzE9!vW+Ejf{wydZDOG_qr1vyrj+^-{mN;(MWYW z3$gGf#H0-D5hM9pcg6GAA6H|%C1SrAo!|UZlEie6ERty0j($AN61?Xc=xDowNOt_- zRnu`w`(HhT_!N?WAjp}GFFeAI`21)OpWgDofNdxFG|Kwf#21W$ugCZ%B&>K|kK*vd zaT8?4lT^WF=} zA0D_oRFan$uU)wtN~+X7K6X)9Uia&L{CAOW5)d=j7unfi zv~jh4II#+3hS%mq)6pgWt&*=?4Oe?@Zwa8M$Rb9p^HFI=#l=yvvd&*^-01*7`O(7S zV)0C7!vRMmkAV=F|Gvq}$=$u}S<4Z+qHLJ38gpjMo!zI)OA3b}5>O^3Oxm~UegeYQ zqV;Q~ps`~%m~moO`Jg~NU@)V0Bz=7`w1vL3e!&Oy2SeY*`P;fB7~tVe7Th)nXIv08 z9(maOQ~TF%)2=w1S31XIeH3{tGH3I-VmP2myO{8O^D%7$s?Rv;5?x&fx+A^jezHcF zaY`M5IOH~<33?-ZjXE83?^DZPyh**Su=nzQl}oaoo;B8H@)RHp{GDvpskUg=2KfL>n@4{u++MkWZttg#&C)Y+O9N;IkJ#8KxoawL6GH3%4VdLtojP zd?Jdz`%&}oupJ%J0kXdigO@Iei3zd~fmWo=-}yhz)DrhEzz8$^vph^bZAWiHC>C_po5Z)!_ta8J5D-gSThkXd``Oi1X+1px^~#jzXAe?RP=^sA7W<4n zb22bmQhd&)_}n$VdAgY~(ri*lq>MS5G4LL0fhdopREQBx2ct%^av=z^qRpab>xKhs z(}6@WEXm;WGtFp>_~q+!?0qBTL=#S3Cv3DiRmejsPi(q{lW+N-?D?`+$ijGVC3O9+ zRy$(d?wW@-J!bZFtlhNr#a%ZoP@1h=yIQhZePM1+L{3g41{5RLO6PvIxGWLD79Un_ zr@9<7>Y=sEP`nqhxckHm+rCZ_KERJ^#AmEd22*s$X2qo zWw2_-ZCsQ0@!1LZ-A! zOh2SBL^wD!M@L6^T=wHOV*&y_S^=NuYZ@Nd`JDGudAjv|>dRhxLcrJaikU_So}a60 z-(c?hyH7$=lGt{qr(TXOV5FH)-vBc}$G7kA!%=)17kY62uCrgMkf2zxA~v{iSaa~{ zvemrtf};Dt`X#iO3nx{ogAPUm2?Y z`N=?84;NZe_X&=9DkA@}qRF&EhRaizdUmd)B!Sq4X(*6~5yXgla= zj|6|tI(1C2F_L(^7vG0ZSl%iE_6%H>tE4g>dTYj_u6lf(%AAj|=1q2E?7<7Snv8N& zZFT-Eq^+xt9@JZY)-TSR|Ck5u1m|;Z?uXFNXPN%ezo)E$E2qCL707scLNTMD_FNkF zr)e*}X(QkK=7yd&74?<~wfV^4{l}3$@ZmtFzGw^M&_Vp4;3FCa=#fY6SBKz1+Iu-1 z)~U&Pc}%x8Q%M^S{Y%?SQyIaV5d2b)pOWpY^fJ!W)ajQKQE#si$S8y&)~0YQVjM#! z2PbuIKN)LA1sfn7<~L~z6tE*H=Y9=iMxay9c`PCh{=LKap<_#+X-hyz@?D9rm#=99 zpPP)prD^FP8eLUY+mV;Iyu2xBK}Mn^#pAnp*3z`H0=%0y^o_R1he(AF>!A9W1x2Hgg%!D(9FB`Av?GC?eHK&^a7CY(rVy zv~`4;7j~IT(sc%R*>;g?IlzCch;Qp!UWh8A>^uCB#(6!HlN-y)XDgJVrq0e{wQsz{ z&gsr5~IMm(n0#mFI1Q_%ctLXH1^?$l}f;_=da?)&Q*`l?*D1g$nPrf%-vJQ z{K;;_j9mB2WJ)AuuRcsPWffk7(OO-*d{+~<^x?__cvO%w`p1K-8Mt+{+p2b)6 z(PVdhzU6km4nB={55x)F-O9*#xq~_-MB~ywpWzFTeP0jQLfkCq6~gd5jmITn4iRg9 z{o`D;dY}<`yhQdQp$sA1yZmeL^&d#o^p)q941Qlo@4nO*8W$P}wB2)?4NwhXZ5|Krj zJ+6OFOiVnRjfvgfCm`ajX7+8vUto^7cl}p%e|bHth46+3^|2s5Yd|A|zZ|eflBJPl zy+u8ZSAruel9P-vY5(J8EQ6O2A<5>yu7r$7N1Rk)>(Ca0R{eK8l$!jGx*3 zyqEfzes}ch!3B+z8;=5dH=bXF0``Vrxbb5JH?*59zAK|QI{lT+Bb-Mv_17KMa5C0b zL8xf!=gzbOm6LyaO*Mahq#;V?)jCzvg=c=A(rle?zQ_RN!|0=Nb52R~Ei6eNrqm^) zvHR(2$DBW-sReG(BQCGy0EQ!5$ET;i2{|en3C3j7Wrsh8hgYM_o!l=wrj>g2n|@6W7h3!l zoi7G3TS*7e#T3hkG^x)0j5kBBX8R$z=vLPdLZVFE~5Wie+>2`2QG z`cVa=G5(F3ku9&-7U{A>ZfQn)G}HYMp~ z1?#=@hLy2K z{yiMa8_ssp=PjvbQPtp|dRW;U9(mFyK5BS-S;?w=SyFfc{M`Ix*HXD0ZTqma>-onh zt7BZZ_9XHH9|ZB8^b2G*a~AA1_5`4w8!KyT8CluFl9JFCMG;*WnT0z8Je7a6N3G4x zC>M_x6`-4kS8+dp)Wuf;5&thxa~CQBfrOC}>qE?xs_L>KniW1G)gB7UB0;qzT2aBP zrofyw0>;Ky7&>KvdL<2?_GmmDQ_=I?g^5|&^Zg$s_2ZU_$;P7HtVAp19E9t{_j4p7 zLGXb7pU7griW?jc@cIz~leq<7@*@Uc=g46KWf`!#69b^yXC_JFyK&aDw5}giRs)ye znC@i&+lO3s{!-gfYADVc-e}%L1zT>qv83^fDShV!K=sU5 zc|rHLgV8wmivy?;N6W1) zz+=4_VUOixGa&lEQ0(pPv2$^;@v@;A8KbzmN?UPYKqIm47s~zqdX!V8#lVgE1@hJ` zR*Tf((U2s}zE1?Nf8^`dh+WAGZ;7X-rdDk@d#dekD#>Z7spC7&L>aEvIkDkC!-Vrb zA1obj?600kf*TOLrJ$uj-L~oI|9Ec?shlmaeu@oHihQKpFuHdybvj~lIbISAVE zygb{q!uRG(+^`07e!{p*i?cr}kjp!W7KdZpR=Y@Zp{_q4Q$wtDOT!$ zE<}3f)^v0OPlQ9STF6N2s=N}CheVP$y@h}dyz6WJqk7^<5n&y)HV6+E z90}PE%Ns+mfz|D?!E$Ne?SGdZZohqB!6zI4A-AyX&*r)BDIQ5Va5hoT!I8ra0THba zJ$T`BsKxZ%fl zfw~$h&KD#^Lm}+O35}Hbyi{8w6pPGwtAstdBGJjs zGi`uqTADo4^J18FzjZx&@xHsI3hF(Cw$OL4l*Ubv)s*7-R|-7Gj1c>q($pG?f`Jx8 zTLmE(mGj74w{cOvh*DlO2%{l)PTOb7@EiG5Ff6ap06trf&{lr6rRfdETgH$bk zH_s+sE~2Lsr;;Z9H@m&KMqjMEF(cLASNincQant?q3PFhvdAL;J$A$le?ZIhH$#>t zaY={!tJ;M7N`oKG^m$z0B#hhkE0QW$FQ5K6WPP@YOJnH{1w!l;t>g{A9OWsk8+-;4 z^arQCW7tedyTJ`C4|VVG!wFATw;Hi#w0(Lhfo1QVU&M%T%l-rlp zbVz)%c97R?5R?y+)$`aiMKG_guh)S!V`B500NNBptxZZtTpid5%ajS+U1-(oV01|%;wvUtw^;jr6! zq@?TAl4<`y*~XR8(d8Z`)K;|eBh0({ye%dbdL|C2{<6o;4Tpv3X#6%rPJxx80UHjh>qJUmQBcsl90=*C1 zkB@v;K*+^K)h8?YvV}n8O^1URs=tHWIQ71l7^H%<@N#U@F34y&l5$bv^1Ad>sl4Y_ z7-p5hzuYWbr7aGM>WU6NUtx;i85&8MQO)!uy}I|F+@G}wUk>eNy0>#~mySuvRJk9lS@AM2@7DYp9$JN$37{-2?;Ed zf+Jgk23!WMDifWIQ&F>D&X_nB++lR7%C`9Tc-KOHP0qBOlFtKrE!9<{N?%)RXg#G| zeqAztqPkVRmH7o?(jTiI=HqYL=NG$k;1uT*Vv7!ci~Av1MXfcTHEH|W_44Qfam9D3Mw0$`I1^hWsO`sXnHn6 zDP?6eB5pfGB)PS3L2!YO==ixC>?;H7krxu2)u(CH4 z4nch1OsfN6!jd!aQ!TF`DISYH{eNTAYwr`V)Uj<3sf3m70A+TARcGlD!7zVge$VPn z4cT(pwS$e;u}n?Bc`WD1n{(gQZ~C5xIz@T^uPB_ibPy4Z>ag24m0~ykKFc&S3ql8&iGfLH`od8LS|~Djyx>I9@!wj9qvA9LVl67jHHW zR=wCT50R+gGq0 z3cay!t>B;zqMl4E960ZHoPz$bzLnZ0*Nrsh zay@*%+xCWb9X;|Y6^a+?D_sU1y`(|nVzBZEkUwaO-uI)Ll1ygC`*J?olwXaQqw&?A z7lXcp^+!+xNEYCMmj=ZqTSd#vH^&@doDSHa3};~nz+r>PMko>SbgPv%e86M06%uHX zwh3CW)5eY?3@L%gy@%$$tP-MrMiUpMu-VKpnanXSeoA1*UMbP0=`OobS+dSY{&XdmH*~hW%bS~;NjQ3_E!IC@O(*b8-TeGz8Tte)-_%S=>LRrZlLBgn zMFQ>1c`bdzl*EGAr|B2*%v(omF#J963`OedztdT84qN|XEd?4u*W$gYad@Y6B0BEk z2S;noIkhQ7!SB6`c_YF}7qj7rp1g!w4<|TblN!gU{ee+rFKcgxYA};&nMU_05GCD6 z718uM4J@#_Uv;nE)a=pALDA`~40?Vf;?tZPIZ=Y^XusD0L|7`*Xi_>!AbI;mi_onJ z5F^9Y)fZLB8u~PhsA+;aCGq0BGw$1A|D(l+uAKzC#%}B1Su*?jTKtb(QO3*6)vSD6 z+*-t&+gm9yvEZvS5H#P!_1z1gz>yKIZ2)k!@h7yzr~sjd{CPasfS%*&yI+Oby?7VhI=Dfu$ofZJKfsO>~bTpr0&VY6*d7_f{thU%)23=&)-KXCvCABM%~J1{KUl_+5g_*_1By`hk{k*V*Nx?B6eOWAp8p7fIXq#C02ppm(NY+>*ilGnVy6mMpS;%+4`6eQux-L@5lfMxrwiy z*8Rg!26Za$fKNlO;o7NmwGQW-W^x>#?;mC3#V3pct$-(h~--s6in@id8+E@jO-4^N{I8TK(#!cA2UFeSdd1m za6rW=I7iK$L>2B2D!`uBb*>HIW+n|{P-15C+oxv{u7h~=+Bmjzxmr~yuLNM{KI2EN zE8k3i*KEOl zqJhaW!kBb}3{sUr3KTUoYHMJ88-;0g+|KQ46i4NvoC4d6PVZ)7SleSxT)cfb#lX6} zjLzu#z&b1$&1C*w!WnhGHf1^+*~c8w)d$SqmS|}A^~a?r-Ev)n^=sI}R$S>Kfe-HI zY#5!M#{bg1F@yl@n6szTX4CU)3*CLsV1{uB8s}FC5){{l68=(@)Y1M<5!BAwL$$!b z`L*`jThACHjh5k;zh4!7H>n8T-tzsj#pVcgLR~F%L#B z;qE#ddqNCB(YG#9Bn`?=l# zx^45&xsDYBulcpV#yy@oZFJE79|6tKU-EQq@`{q^X48XR$~m9?cLW~5Zgd}`A^DrF zhP<(k<@qvE`pPo$ueFm?~ zd%GQ{@`fk1TVN6Q8U_x!fw)WSymVeb$q3A$)v@s1d6az2e1$D8p>uSaw%fapB(fJ? zJ_iDm5<8%|d;;3VQ5Gyg-xq4SW=FiZ0%4Rix4ZeVBpkAsdr zs%bk9qGJ^U2&Ka0R8;+}(^~54E~{NcY#tp6{#)NS)--~?@aZ;_3ns!5)yFyey?j_2 z<_d&huJVKdF?_IO9TB4ebMy0XqTj!-*oeV~KQS{i`^yLNqd*m&OwzX47~7YjM_XLP zB6vGr3>%6scRX;Ty2@M~zvg6F#0h+a^Y3WW=umLEsn|~M0g9#Lp$j`Y))_Y{X%UTf z^=j%oe*hV18NSZv{b_5W zFe>t@=OiC=cjs1w(S|+zhV7To9=(-{p$unkZjPw3tF5iQN6$z_DU^qUegi`t#ZMl7 za$@_tYeoFTTjUx`Qd&9!Q4+Q*tl%bAz{bW#tm+?WeO&DAgO8qJz|`rwG0LwFKD13c z$ef_&JSp0t2Mbuo;Wv8RUB^r#v4=CCW7P5M6!d+F2(h%hX52|c^uZ0$EZNWW7fqbhuUzfSS%}8&jH*e4E%o(CW}q1z<{#Z^ zx|AUBrKzl}^q+=~Wn+-~rH{?%EZ9@Ontl&(^+=pEf_bk~ZtPO_q;zH~c*1)WNr{BK%i zg#n~3>?g$1ls>npBOQ0Ft3m>&owaloES8^2=c&mhFlIlY{LTnB$)mPP7`yQoKV^?k ze+|U*45iPK(O@-Aiuw7ooU}ANca9RCI9+eCI;UI(gY>gz93`@>Gj?}L32ggD!ub9P z_6|;6KmF>d1tt#7BzgOV`w9Am#R4BbX0o#orszA5BQ`!*z#sAuX(}#fTl;<$1K z80`7Ki$r#0zjJ`7;S~c^o{%Z{`PW_I92|A5l*+EK2&!F= zu2`jnLxIlt-$HHWqLyy9CJtrS9vHEtl}k#FT;&C)gasI5FO}X4I<+XC?_xDpyaAif z)iKBT$*5Z3QTX?m!cHDD+uuzC{0V?$3 zwJYL!y|Hoy^y$RQ%pB6g6f_AE3mKF&346XgmHr}ebb*q3xBd6TgF~|?(|l{g-~Amq z?yI0Xnp}!>REb9MM<@Z2?KobC^%4NVM={14o^bBB=Q1ym9O2YU9`HFoH*4Gps_*J( zV0*&NPn^QZ%TtnO+!4+Lo-D;WPi?500mHycRXQPkdmYE%wMpL5?xR3Me*9WKjE=341Gpa%>byj#UwR3Zy{L>Nm# z0+K5r4kb()Z*~3YTOxzX9VweiC6Q09V0~`1GEl54P0;aA@jXTgf0_Z8sSLh?eYHQ4 zKSBvQePhZIu4i|V%|&>Yn16{aDTKGM#bkjS^?UZYSoD2`XgTT*UQK=$b9$M7i zeDx^i16`0(|B=0rK;P2?!rzdKh7%^Y9YxYeQ3jGes;?H-1bk{|9utiJ>z-q zo#qb$YCmoq%6-_c317+M(*`;fCbfck9D0K{8S9G(;GIY7OiFxE-EOHrM8%Gwv?R${ zJ?m}y9Ul3gM9>fusDf^8TzHDc$H!ZDW2)9AAF1D(?8#c@eUjcA2r)eC$TiLU5+d^| zug{q6jtL)#4@nxejD%4)`LH-%iIB6O_nAekE^@WkJ3Eon?z`>)j7RfCCS9SMztcw2k_2j%LM_zbc`5n!dDN)hU zMM7#=O%5A`H-RDL=e6&_f4gn(rIWdM)7!EcSa)SQXtBG0eHvQ}p%41{V{zoNR5=S; z^tQ}mAh833eg8z*!tZb@4=|C#!)lFgF&KkudOTO!@qCaIN6eQJ6N4NR8yh_1OFrlU z$q8_AaZO%fj069j#8cj`M*|%CJR?<3L#h8;7%}__aM}52X!PfJsBy{g)NrfS)oMnH z&3={ZQKWbN7L@Q6If&%-<$>+RbS(qc_=ws(4~@$qdBJG&qaFmlP3_ zqr-_!o~1$yv>AXUmWY1}ue2d%u-kGUqS2QqQi#1cy)n3ql9pwH5_-|0?>VRQWX1i6o%y}9M=?*WTIPxEBPVEXeA3_Q2#wAn3Z|~M%9dUM zLdizJ%QZLbjG2MJsA1E;EkO74#w8AmF&s!1L={32LZk3gmQkx3V?LftU7txscmH|& z)%QJhL%649;SfO2(xsj-o{?+#kP2V!lWY|Hu`@-(ajn!i4M<8~clBDp?tm>+e7v5O zAsdDFA^%|hf+wHI?Lr;E8;y{tE@B$>s#E$k1nj1qUY_gtSLf-dI5Cso-8NAp1~!Ia z?J`&#=wEc>Ll^rF0ZmkHF0p(Shn%de@oEDsMBhGrXI7Tn94;VPt!f>LpG@B=;l=|D zlyJXP8m!06+pPGG`wT6t!}Op(+;efecZP3iU!s$~1BiGWaPn_Io>Brcr*=Nht^YYg z$Vp#BWWDh%YY!`P0H&v>4-Ul>g&q`PVTp^t8F{LnkkgF?h>Jt>Y*07%ebdy0=(NF1 z*Ge2}FrwVQl#+NtaH9KC8L6=CggzYnjt(#ixc^Fy-OX_0&U%9%*xo)3LJ;Ba!x8tT zQCitsym)$YQe9<*z6lnDXjX-xwa|_58lI>*(1I zH?Qr5WNe=2S?ZZNC1%=?I$%u)VUeK*GtT+j-(t1=!0WYD>#mw~iENTcw=?I#mg#R( z8h>Cg%z$Xri9+IE9yaPnK9S>GdQzV8aC7^tkRAEmnH!BtC@U*>OBG`9AIfB4l+SZK zzsYgw?H`|{V~L3!v|@MikGw#$LTOSP_$r3@75U&Yll;)x>*{ zRW(;uHdn%o&N~-*Q4XHs;NjJ|9nV3bK&2^@sl39dA=5YE=Hx$MV`0%VF`*(q`_!NR zsBd>KHDl6we!8gw+B7w(K5c>j8%Yo&_kVr(>$oNC`2~aC=Tk5ahvSRkbeSz*f(X!* zC}RdBT;}yC{{vPeL1=(2FLb?O#-C2Ux4~wzN2LZX&~vb(PzzIIfXUKv)kI7glM{pRDd&d7KDcms|z=y*1of{H_Aol;_kipRF}d z8<44H%Y~{VTrt6wDd)v}2R_~`B3GstVBPvQ-92G#rM~sveB`SNs!D}l#*M@3&1H*m6#Tnyi?^J*H@P;zPG83{~A~UdFG_^@e+fFKco%G2muTBti zAe=Q=P7<;^?@GGy=jF7>59_F~`8u~T3aU>bWWBX}UZS0Nk;6fp@50g&!fTy>9nh;U zcqG!1_`=3Wtl~yZM`yX%-)I+tRCpS)2xe9o)rs@}xH-AhnO^>DmWUMW(0N?$f1uSI zy2I_TPM-!WqAz$mLt}rih35(E^(4!TBJ-x0#W$bD%i2ws{-P!?FW+)I)x*HhrMkK! zMCRr1F9gY!D2P5C^F0jS7F^0jsO}FgH68lDu0HBtItsV7TW$H?<4VxyNA9kC(lb1; z3+(`YB;419Y-d_Ic1oJ7uTuqrHs7z9~GMM0A$nMBf!A5oYSR}z0w zTI?Uqi`$(lx>ZL4H!m{&QYOB^Mh)h?eW{d?l_S|Dl{&e+_su2Nrl`I|VXwQ_;q|)8 z+}NPNp-6<@FW{Upy`m2E++gRHyV^h`KMYzq`)sXpWy8)WNnipSb2Xsze-)2H;#Nb3+w57+ zY`~QX-oQ=91G`K{OJJVA{H9UMXD-;MllaJiXC4t(-N%B732-2#7Lh_O1*ugIcKHU9 zuG2q0Z<9q^n+v0ZX#7iE*EtcG?k*fMX@cP%n%dRs25r8m8OfQGI;>etxkwP`k5au< z8f^%|)=Ru~)ep0c4c7byam4=$QJw2wf5jP zsdvYqlA2#!j@U3gob2FHmd6ZJ2!ax|?=_=bX?ZK57A230il(r!rZh9%o&Bw6Q|ao| zQUhhLkNqXoEUS>HPgnt#MO)xO%;V&&k&b^{h>|G?3Ubxd?XyP#g)!kH9uUx_)8XYj zBK2^ZL56W?`N_gOI}}fbbI|CYhQE%)U6h#LJ@8U4n_zmH1*c@7bY__}k-JaMOj4r2 zPT%)(E#O;4WMemUPh0n!QO_fZ0~|6IcjrsW^4*C-!28}*_w#2PN!w}1)qC6_IB7^J zyFcO+k@zN7Fzr%r7Z~U$?*^ z)U{`oWp}4|UC(E15esNbV_@+p?+k0Le4Z&EX+jW?&|R7oW) zs}GM95fX&~rvGhBW<;x!=wNRP(&lvBzur%b-V)+wWAAnrJJbZ_QI52;upV*ab>3E} zR?%=65K1T76dRmuuOscvR+>4r!X~fE{*FofHGk^VreA@zfO^R*?k0(#tS3-!l*zof z(LMz{#Kf(Xu9@A|tWvGitkAsC6i}I}+-v@kO2DxkA!VM5Rga&+5W}4lznpnt#c+qP zgH=d&Mbph<7$D>{6qn=W*XlW}4Z)6h^m}MR^`FueJ6awd9&3+)$IC60^8N^Z`Opey zlYr)gKz}s_eR1MGINeUX@{Q3eB%8vBs7yp#LZVo7kTU>)5Bpy)0KI)JWsx{8ZhSWg zeBVJdhKs%0fI0Bj$;oMT8w)q2l;vj02-)DXccw7Sknos zhzQIGq&irBE{}LL%qk!JDLC{L4%-NkFBMN&m}osHTmt@@ldhM}Ph-^C$~wvbaBy(= zbo|{+xW{cvf$LM_RnY7PyB0Be>mSMEwJf2K@gU3WF#Y$e+0Du-qY1=I=!2t(4Hp_M zNJ|UrHQuf)*KQqktOQCFWG>jtVQ89LjBW-Rlq1%W133~QQEk(L9g=dMC?fSYgoG!Y z>YC_k@aYe%9*uczd3@=zx$EdR<*RG~!=#@9SD6H^*SrDCfk|QXbV~MwgxRpnpO^!3 zVizDqw%HJQ^<+Mlm3Lp8s$fsgPZBjhC4N0jAuU2q<0wcX^Yj3XC#tKPP5X6FOBh+&*i(%e(%q9EUc*e z)`zqA?^QU&NEL^KnS;v`_O2q?K$@;Q*k5%o*x`f0ti?EfSq~gA^1I(d8Zj&{>Y? zO@bp}JDN0RH){$qbnFR%yMu?Q6C8ko3NQ3i`4W<5nHObF6e4tzDwZ+b`Jfz425&OV za6a2}6YcNsSNyYe<2R5Ub%gLXG6tP0hZYE^TO1vC|FQ2h5~fc%@l!AAg$i0O#fi_r z+;YIVWo+o9k1Q%KVY|0`5`TJ1-+jV8{YthMJN5!^T>E7U7MZ;AA8++H*<>tFWoEd- zUsxY)?{?}~Yvkfx`t6eu%H>oH95F)&J>_LcEwIb=R*AkFoC~8PBN$__Ey2oRKiH3F ziS9BL*F+tA?Vv(QnJhW+Vx?%k4)N*l3D|O&FI<&qIekJ&g^bzt_(vW4Oi$J_ScG=u z0xT#i_NU+Dv$F}u#>OzjF^Gs1%*@QJg#zi0!*v*a14MBqF9ahxR4TFWieWRaL5kN$ zz6z3(X~Yh^`Yh_45vrZt+4Kfn(;v3!C0@Qk!v|X|q&b1F>{C~>!YO2;yaKh&ntLv- z9VYW-6jRZUY^>E*!axzeEN3H9yo?)(eYx$4kI(7E!1 zhS(vCwhYf<y%1FoojzN0gG_#x_3tFv|iVV#VDI(td#*^`>)8`VCVb5ul7Nz z$EiC;vfm?;lx|d*Ech%L*gGyaub(7ZUw^*~f}2RSBL!butoC`nd>JiJ@Qe+Ll&I2V zz$7D^E))w*;9H!XEuE8yM9WJlCKnoYoNOp!OgQL8IDoo(40P})Z@1Fc8h#yPu6PKH$)5D3x}Q+yZpYi?fy~5|KZBXx3bsz@|!F&>BYLSd{uKTI&XbFw>H^ zJ<~Z)!2%Ukt4cqt!Z7Kdiwewwv$M0?n4y&MLCT$4tB`O&zOyhUGAb5#~Ys$qo~b$)2q$t|fc^su1oyv4LTaEEaiRAfYMJU3$K08JY0 zvh!=j-_Z+0?SUB}#)v}(tJmGp?1%nA$uM*CCiDC0#v?-R+kgE8@&su-Ow$6yW6+AU zani*NUe~5Tr(vGEYaSe*_hz76Bh6Q?ETU*0YK$z5Xj)w~EW63`if_;v{lN=6JuBhVxvn z0Us*%hhVyF%_E@r+I=>owp?Js%cV?KQAHfL)FlJ>(j!& zL*hQ^G5b}9KmGc1|2qwI?MS#*63)p{xU~eiC7zIbv11O=Z4paEF@x!(6NtT6lZ|>s z6Yd|wDI>JId`q|biG4yLof@Um1z)DY!05&8>I-symh8|{1WfTH!>V2zSJHXdmm`?w z*z7ViQ!0Khk9VTss6BIWFRdsI)c?c_fiW^)R$5A7mm=v>dMh1% zEd>168u7o?{$Ur8@2-c*P%<#ahzQ7Gp)vB-E@+@(AqBScv@;siy*n9Enjj1oYS{k@ zYT%Fej(Hy#NGeFh!I1(2nXj&`c~5&#?OW`dTUypxjQ`a5?a3C$i2#MvvyX*?AE;tu z^F`!&RE78PNTZ_#EW^dcrK+txoXKw1;wlN{i*;CQF^)IIcS!v4{?Xk}iMUrHAqqX? z-;E#S*tIfG6GEl(SE((pq=fqS@82`0_e>+gJ*4N%b}Mz^uEPc62a_h4Va_fTg?~lY z3dZm!m6S45;paCur$D2rQ1pz9r}rH@{gI(TKmK&m>eC^@@Lmh`LVXK4KUDg46ZCm> z5iKPQBcwMJK|@Pxs9Az6xjfNrwRaOX!P2^!qiD~cRxz`OXUh+JT>z0PE`Yq2KL}%l ztXz$_m3T!^r$gHiH^_+sNi1NNc~3Eb>~6 z5t0{$k-$D?0JRg6m-U$INKsgculv#T1^(G-eq6DJKIzx?fsg>XguCV>1)Lv!k*plWA41h zldq32=tg{>UAtC0|B(9(Rqa?Fl42wQG|LQ*PERUHh1%*#M#AN54tjS@i3dGh9533Y zREOcj(Sn3|4~fg}{z7+H&r%jGoqo4#(y4D# zjz4}-4ehOc^L;qGj(r16t%Cd6yqKz%94KjNvr9^FPKa_UE2{fhxOnqeC@HBb1=QoY zwG{4WeN5eS8JfWOax_J=*7O4E!!szXj`0RuSAoXOtm7PzAo9Fj#xRM2BU-#%`cjZDC{lSIUcYmyeWwtjBk znDV@5ru!xbq6wP*c&l!CT0(zG7Rwq)NI**hO);mJxR80jr1CYO)KZybkO#hXDq_Hy zBZvm9o{Y9VX^nO1GpBZ9TYM#4{$Tn}S{ejVx_P`%L1qa>Ng1_-qG|Ui5MwK2p=&Mw z2>lt#&YeA~iT2<_F!fa{K-oo|k|pC!ErvUikh)c1cE`!IvDtZHE~Ilq*-Qf_J4!YJ zooH<5w{%@`SNY0ULSHi7f*J(0ZF!RDs5tY9l0V*tr6$+J{BBXn`0oTk4+BM+inJ^p zSK`v(BM#t?xDNX8)d=|Cr_2jK1NyuV^CCT*2(K6UD_E~ZIAH)lt-{#A_reD6&>Osf4moV)QL;b2N%o-Dr8%|R2f}8m#$iMf~TIKg4dv7?_Wz=g$_c2ij)?E zIkE+QWCPUy!9G>^S(s(CRb9BUW|IWk0)mjZC-%zXq5GUS-I~Sm)7KP(72#96+gKq3 zR*V}M$tHKzR-=!h)ffR<*U9hvE*koZB%cT2kp8_f)#rVYyEi{&Ha{Y4v5wl#zC~a^ zJh@)K+H;kQi?#&SYRV%h8LK$M9lYaytR=(^w4KnXr^2hbfJ4c9_U){;3?4B!xu8yd z*YYeB&r3Tm<~U-~!9E=DqcIsscQ$6Hypl<3xTcx^U{=xt52nc-V$x(sRWJ^3E-YjW zvymUUv#pm;zljkG`w=wChbx!wos^ERgGU}W{k7A`stY$PttP%(IZN~o3l?OJHcOE1 zM4x-kumnrUHc&lbGqtUezCzvjdVCMaj$G4|?Ev1vKLniNptsim6Xv>z6t%J%w46$ruR9 zzDGZ>PGeR=DcK9L_+zEJ9&ni76P_4MHoVV1aRB=!O!NekU0D$B)R)Eg{-a))<}SZVf}K37Z$BS)M3NerY6#E+TV-WFyp{?HcX)1k z%aCusjULuRLYOX+8@BQ0>D@>C8qqo)sxz&geHN&P%dP2no=q?HZ(+*PX~G`yQH!>+ zi_$Jn6)?FBC#NT~gHm(L3y=~7tUbv&Mo}ru%z&i&+QGJ}E2F*gS1emocXnBOZcE3j ztyjhtUjK?H;@lB*MniIkhTwsmfavGhL36<;44P@-{$-;L(LFC1B{DqIR}eNlt9O*7 zg3#o3^pyp>8ulm26RhROBM#lmuH*=)7Uo{3@U24<4 zJ?o~$otcWi%eh<)5>*=F85r>}pHfz*I!~M7-*R0MhGSFkKVo*G{U#Dw;EgAWyTvw) zdy_r54`lE;Pj>h;!H>Su2ZlYp=WCclqt+j-@kc~Js-4LGGsAa|y(PhT^P0W-I;!#r zfKNX@s~{^&$KwZ^cRwPbas%Ln3vVR#4Ne7!ihhE$mnH**Ud{&(uv3FUi7K%*;Ce*@ yd=_L#`$p~!VjvlL9CnNb11vIC-25jnnba4G!00^cQpo=e0di8xl7GaFL;eStR1XaR From b48d2822d41255bc3b8f5c82a671703735f53247 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Tue, 13 Mar 2018 16:30:17 -0300 Subject: [PATCH 16/18] Some bug and mapfixes, march update version (#4412) -fixes #4400 -fixes #4411 -fixes #4378 -fixes #4386 -fixes #4384 --- code/modules/clothing/suits/armor.dm | 1 + code/modules/paperwork/folders.dm | 2 +- maps/aurora/aurora-3_sublevel.dmm | 5 +++++ maps/aurora/aurora-4_mainlevel.dmm | 2 +- maps/aurora/aurora-5_interstitial.dmm | 12 ------------ 5 files changed, 8 insertions(+), 14 deletions(-) diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index a2956436079..6c2069f490d 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -103,6 +103,7 @@ icon_closed = "jensencoat" body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS armor = list(melee = 65, bullet = 30, laser = 50, energy = 10, bomb = 25, bio = 0, rad = 0) + allowed = list(/obj/item/weapon/gun/energy,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/weapon/gun/projectile,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/handcuffs,/obj/item/device/flashlight) /obj/item/clothing/suit/storage/toggle/armor/hos/jensen/Initialize() . = ..() diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index 2b4d9e83b45..c1c6a14542e 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -26,7 +26,7 @@ icon_state = "folder_white" /obj/item/weapon/folder/purple - desc = "A gold and blue folder, specifically designed for the Research Division facilities of the company." + desc = "A purple folder, specifically designed for the Research Division facilities of the company." icon_state = "folder_purple" /obj/item/weapon/folder/update_icon() diff --git a/maps/aurora/aurora-3_sublevel.dmm b/maps/aurora/aurora-3_sublevel.dmm index 8f7d8d59535..256a9437aba 100644 --- a/maps/aurora/aurora-3_sublevel.dmm +++ b/maps/aurora/aurora-3_sublevel.dmm @@ -19093,6 +19093,11 @@ d2 = 4; icon_state = "2-4" }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/white, /area/medical/patient_wing) "HM" = ( diff --git a/maps/aurora/aurora-4_mainlevel.dmm b/maps/aurora/aurora-4_mainlevel.dmm index 1f44e3f0963..e1fda370412 100644 --- a/maps/aurora/aurora-4_mainlevel.dmm +++ b/maps/aurora/aurora-4_mainlevel.dmm @@ -36859,7 +36859,7 @@ name = "Main Exit Door Control"; pixel_x = 0; pixel_y = 26; - req_access = list(5) + req_access = null }, /obj/effect/floor_decal/corner/lime{ icon_state = "corner_white"; diff --git a/maps/aurora/aurora-5_interstitial.dmm b/maps/aurora/aurora-5_interstitial.dmm index 2cca6fe7d43..9c44f9a1c6e 100644 --- a/maps/aurora/aurora-5_interstitial.dmm +++ b/maps/aurora/aurora-5_interstitial.dmm @@ -1731,12 +1731,6 @@ icon_state = "corner_white"; dir = 9 }, -/obj/machinery/requests_console{ - department = "Forensic Technician"; - departmentType = 5; - pixel_x = 0; - pixel_y = 32 - }, /turf/simulated/floor/tiled, /area/security/range) "dp" = ( @@ -2739,12 +2733,6 @@ "fz" = ( /obj/structure/table/wood, /obj/item/weapon/reagent_containers/spray/luminol, -/obj/machinery/requests_console{ - department = "Forensic Technician"; - departmentType = 5; - pixel_x = 0; - pixel_y = -32 - }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/security/training) From 8a7d5946cedbe8ee5d13b898c151f7464e1bf401 Mon Sep 17 00:00:00 2001 From: skull132 Date: Tue, 13 Mar 2018 21:31:10 +0200 Subject: [PATCH 17/18] Changelogs, 13MAR2016 --- html/changelog.html | 7 +++++++ html/changelogs/.all_changelog.yml | 4 ++++ html/changelogs/burgerbb-chainsaw_fixes.yml | 7 ------- 3 files changed, 11 insertions(+), 7 deletions(-) delete mode 100644 html/changelogs/burgerbb-chainsaw_fixes.yml diff --git a/html/changelog.html b/html/changelog.html index 830f056b64a..5cc05ece99d 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -56,6 +56,13 @@ -->
      +

      13 March 2018

      +

      BurgerBB updated:

      +
        +
      • Fixed various chainsaw bugs.
      • +
      • Added Chainsaws to traitor uplink.
      • +
      +

      10 March 2018

      Alberyk updated:

        diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index a251ed09ea7..93d67982cff 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -5234,3 +5234,7 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. kevinz000: - rscadd: Projectiles have recieved a major overhaul into pixel projectiles processed by subsystem a la TG. +2018-03-13: + BurgerBB: + - bugfix: Fixed various chainsaw bugs. + - rscadd: Added Chainsaws to traitor uplink. diff --git a/html/changelogs/burgerbb-chainsaw_fixes.yml b/html/changelogs/burgerbb-chainsaw_fixes.yml deleted file mode 100644 index 92199779531..00000000000 --- a/html/changelogs/burgerbb-chainsaw_fixes.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: BurgerBB - -delete-after: True - -changes: - - bugfix: "Fixed various chainsaw bugs." - - rscadd: "Added Chainsaws to traitor uplink." From 12f3bb080fa7bcd0d16e0b7389ae250b5167a150 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Thu, 15 Mar 2018 07:43:52 -0300 Subject: [PATCH 18/18] Fixes cardox recipe (#4417) -fixes #4415 -fixes gun offhand having pins -fixes cloth having the same hardness as steel --- code/modules/materials/materials.dm | 1 + code/modules/projectiles/gun.dm | 1 + code/modules/reagents/Chemistry-Recipes.dm | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/materials/materials.dm b/code/modules/materials/materials.dm index 94d627fdedc..4ff0390bf08 100644 --- a/code/modules/materials/materials.dm +++ b/code/modules/materials/materials.dm @@ -697,6 +697,7 @@ var/list/name_to_material melting_point = T0C+300 protectiveness = 1 // 4% flags = MATERIAL_PADDING + hardness = 1 /material/cult name = "cult" diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 5f6ad6a7106..815b6effb62 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -608,6 +608,7 @@ icon_state = "offhand" item_state = "nothing" name = "offhand" + needspin = FALSE unwield() if (ismob(loc)) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 4f8e02d50b0..b2adc2ea910 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -542,7 +542,7 @@ name = "Cardox" id = "cardox" result = "cardox" - required_reagents = list("platinum" = 1, "carbon" = 1, "sterilzine" = 1) + required_reagents = list("platinum" = 1, "carbon" = 1, "sterilizine" = 1) result_amount = 3 /datum/chemical_reaction/cardox_removal